1 | % XMLTree: XML Toolbox for MATLAB and GNU Octave
|
---|
2 | % Version 2.0 14-Aug-2015
|
---|
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 (basic).
|
---|
29 | % editor - Graphical display of a tree.
|
---|
30 | %
|
---|
31 | % Low level class methods.
|
---|
32 | % char - Convert a tree into a string (for display).
|
---|
33 | % display - Display a tree in the workspace.
|
---|
34 | %
|
---|
35 | % Private methods.
|
---|
36 | % xml_parser - XML parser.
|
---|
37 | % xml_findstr - Find one string within another (C-MEX file).
|
---|
38 | %
|
---|
39 | % Conversions struct <=> XML.
|
---|
40 | % loadxml -
|
---|
41 | % savexml -
|
---|
42 | % mat2xml -
|
---|
43 | % xml2mat -
|
---|
44 | % struct2xml -
|
---|
45 | %
|
---|
46 | % Demos.
|
---|
47 | % xmldemo1 - Create an XML tree from scratch and save it.
|
---|
48 | % xmldemo2 - Read an XML file and access fields.
|
---|
49 | % xmldemo3 - Read an XML file, modify some fields and save it.
|
---|
50 |
|
---|
51 | % Copyright 2002-2015 http://www.artefact.tk/
|
---|
52 |
|
---|
53 | % Guillaume Flandin <Guillaume@artefact.tk>
|
---|
54 | % $Id: Contents.m 6480 2015-06-13 01:08:30Z guillaume $
|
---|