source: MML/trunk/applications/m2html/@template/display.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 614 bytes
Line 
1function display(tpl)
2%TEMPLATE Display a template object in Matlab window
3%  DISPLAY(TPL) displays informations about the content of template
4%  object TPL:
5%     Template Object: root '.', 2 files, 9 keys, comment unknowns.
6%  root element of template files, number of template files, number of
7%  keywords defined and the way of handling unknowns tags.
8
9%  Copyright (C) 2003 Guillaume Flandin <Guillaume@artefact.tk>
10%  $Revision: 1.0 $Date: 2003/05/05 22:19:51 $
11
12disp(' ');
13disp([inputname(1),' = ']);
14disp(' ');
15for i=1:prod(size(tpl))
16        disp([blanks(length(inputname(1))+3) char(tpl(i))]);
17end
18disp(' ');
Note: See TracBrowser for help on using the repository browser.