1 | % XMLTree: XML Toolbox for Matlab. |
---|
2 | % Version 1.0 12-Apr-2002 |
---|
3 | % |
---|
4 | % XML file I/O. |
---|
5 | % xmltree - Constructor (XML parser). |
---|
6 | % save - Save an XMLTree in a file. |
---|
7 | % |
---|
8 | % XML Tree manipulation methods. |
---|
9 | % add - Add a node in a tree. |
---|
10 | % attributes - Handle attributes of a node. |
---|
11 | % branch - Extract a subtree from a tree. |
---|
12 | % children - Return children of a node. |
---|
13 | % convert - Convert a tree in a Matlab structure. |
---|
14 | % copy - Copy nodes within a tree. |
---|
15 | % delete - Delete a node in a tree. |
---|
16 | % find - Find nodes in a tree. |
---|
17 | % flush - Clear a subtree. |
---|
18 | % get - get node properties. |
---|
19 | % getfilename - Get filename. |
---|
20 | % isfield - Return true if a field is present in a node. |
---|
21 | % length - Return the length of a tree. |
---|
22 | % move - Move a node within a tree. |
---|
23 | % parent - Return parents of a node. |
---|
24 | % root - Return the root element of a tree. |
---|
25 | % set - Set node properties. |
---|
26 | % setfilename - Set filename |
---|
27 | % |
---|
28 | % Graphical user interface methods (work in progress). |
---|
29 | % view - Graphical display of a tree. |
---|
30 | % view_ui - Useful function for view method. |
---|
31 | % |
---|
32 | % Low level class methods. |
---|
33 | % char - Convert a tree into a string (for display). |
---|
34 | % display - Display a tree into MATLAB. |
---|
35 | % |
---|
36 | % Private methods. |
---|
37 | % xml_parser - XML parser. |
---|
38 | % xml_findstr - Find one string within another (mexfile) |
---|
39 | % |
---|
40 | % Demos. |
---|
41 | % xmldemo1 - Create an XML tree from scratch and save it. |
---|
42 | % xmldemo2 - Read an XML file and access fields. |
---|
43 | % xmldemo3 - Read an XML file, modify some fields and save it. |
---|
44 | |
---|
45 | % Copyright 2002 Guillaume Flandin - INRIA Sophia Antipolis |
---|
46 | % $Revision: 1.0 $ |
---|