source: trunk/src/@xmltree/display.m @ 723

Last change on this file since 723 was 723, checked in by sommeria, 10 years ago

xmltree and toolbox_calib added to svn

File size: 602 bytes
Line 
1function display(tree)
2% XMLTREE/DISPLAY Command window display of an XMLTree
3% FORMAT display(tree)
4%
5% tree - XMLTree object
6%_______________________________________________________________________
7%
8% This method is called when the semicolon is not used to terminate a
9% statement which returns an XMLTree.
10%_______________________________________________________________________
11% @(#)display.m                  Guillaume Flandin             02/04/04
12
13disp(' ');
14disp([inputname(1),' = ']);
15disp(' ');
16for i=1:prod(size(tree))
17        disp([blanks(length(inputname(1))+3) char(tree(i))]);
18end
19disp(' ');
Note: See TracBrowser for help on using the repository browser.