Last change
on this file since 784 was
723,
checked in by sommeria, 11 years ago
|
xmltree and toolbox_calib added to svn
|
File size:
594 bytes
|
Line | |
---|
1 | function s = char(tree) |
---|
2 | % XMLTREE/CHAR Converter function from XMLTree to a description string |
---|
3 | % FORMAT s = char(tree) |
---|
4 | % |
---|
5 | % tree - XMLTree object |
---|
6 | % s - a description string of an XMLTree |
---|
7 | %_______________________________________________________________________ |
---|
8 | % |
---|
9 | % Return a string describing the XMLTree: |
---|
10 | % 'XMLTree object (x nodes) [filename]' |
---|
11 | %_______________________________________________________________________ |
---|
12 | % @(#)char.m Guillaume Flandin 02/04/04 |
---|
13 | |
---|
14 | s = strcat('XMLTree object (',num2str(length(tree)),' nodes) [',getfilename(tree),']'); |
---|
Note: See
TracBrowser
for help on using the repository browser.