wolffd@0
|
1 % --------------------------
|
wolffd@0
|
2 % XML TOOLBOX FOR MATLAB 3.1
|
wolffd@0
|
3 % --------------------------
|
wolffd@0
|
4 %
|
wolffd@0
|
5 % FUNCTIONS:
|
wolffd@0
|
6 % xml_format converts a Matlab variable into XML string
|
wolffd@0
|
7 % xml_formatany converts a Matlab variable into XML string with attributes
|
wolffd@0
|
8 % xml_parse parses & converts XML string into Matlab structure
|
wolffd@0
|
9 % xml_parseany parses & converts XML string into Matlab structure with attributes
|
wolffd@0
|
10 % xml_save saves a Matlab variable/structure in XML format in a file
|
wolffd@0
|
11 % xml_load loads the .xml file written with xml_save back into a variable
|
wolffd@0
|
12 % xml_help this file, displays info about available xml_* commands
|
wolffd@0
|
13 % tests/xml_tests tests the xml toolbox by writing/reading a number of xml test files
|
wolffd@0
|
14 % strsplit utility function which splits a string at specified characters
|
wolffd@0
|
15 % unblank utility function which removes leading and trailing spaces
|
wolffd@0
|
16 %
|
wolffd@0
|
17 % FILES:
|
wolffd@0
|
18 % doc/xml_matlab documentation containing info on installation, usage, implementation, etc.
|
wolffd@0
|
19 % matlab.xsd contains the Schema to validate xml files for the toolbox
|
wolffd@0
|
20 % (if not present, look at http://www.geodise.org/matlab.xsd)
|
wolffd@0
|
21 %
|
wolffd@0
|
22 % RELATED:
|
wolffd@0
|
23 % xmlread, xmlwrite (shipped with Matlab from version 6.5)
|
wolffd@0
|
24 %
|
wolffd@0
|
25 % Further information can be obtained by using the help command on
|
wolffd@0
|
26 % a specific function, e.g. help xml_format or by visiting
|
wolffd@0
|
27 % http://www.geodise.org
|
wolffd@0
|
28
|
wolffd@0
|
29 % Copyright (C) 2002-2005, University of Southampton
|
wolffd@0
|
30 % Author: Dr Marc Molinari <m.molinari@soton.ac.uk>
|
wolffd@0
|
31 % $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$
|
wolffd@0
|
32
|