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