wolffd@0: % -------------------------- wolffd@0: % XML TOOLBOX FOR MATLAB 3.1 wolffd@0: % -------------------------- wolffd@0: % wolffd@0: % FUNCTIONS: wolffd@0: % xml_format converts a Matlab variable into XML string wolffd@0: % xml_formatany converts a Matlab variable into XML string with attributes wolffd@0: % xml_parse parses & converts XML string into Matlab structure wolffd@0: % xml_parseany parses & converts XML string into Matlab structure with attributes wolffd@0: % xml_save saves a Matlab variable/structure in XML format in a file wolffd@0: % xml_load loads the .xml file written with xml_save back into a variable wolffd@0: % xml_help this file, displays info about available xml_* commands wolffd@0: % tests/xml_tests tests the xml toolbox by writing/reading a number of xml test files wolffd@0: % strsplit utility function which splits a string at specified characters wolffd@0: % unblank utility function which removes leading and trailing spaces wolffd@0: % wolffd@0: % FILES: wolffd@0: % doc/xml_matlab documentation containing info on installation, usage, implementation, etc. wolffd@0: % matlab.xsd contains the Schema to validate xml files for the toolbox wolffd@0: % (if not present, look at http://www.geodise.org/matlab.xsd) wolffd@0: % wolffd@0: % RELATED: wolffd@0: % xmlread, xmlwrite (shipped with Matlab from version 6.5) wolffd@0: % wolffd@0: % Further information can be obtained by using the help command on wolffd@0: % a specific function, e.g. help xml_format or by visiting wolffd@0: % http://www.geodise.org wolffd@0: wolffd@0: % Copyright (C) 2002-2005, University of Southampton wolffd@0: % Author: Dr Marc Molinari wolffd@0: % $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$ wolffd@0: