|
Last change
on this file since 759 was
723,
checked in by sommeria, 12 years ago
|
|
xmltree and toolbox_calib added to svn
|
|
File size:
602 bytes
|
| Rev | Line | |
|---|
| [723] | 1 | function 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 | |
|---|
| 13 | disp(' '); |
|---|
| 14 | disp([inputname(1),' = ']); |
|---|
| 15 | disp(' '); |
|---|
| 16 | for i=1:prod(size(tree)) |
|---|
| 17 | disp([blanks(length(inputname(1))+3) char(tree(i))]); |
|---|
| 18 | end |
|---|
| 19 | disp(' '); |
|---|
Note: See
TracBrowser
for help on using the repository browser.