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