comparison toolboxes/MIRtoolbox1.3.2/MIRToolbox/@mirdesign/display.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cc4b1211e677
1 function display(d)
2 % MIRDESIGN/DISPLAY display of a MIR design
3
4 disp(' ');
5 va = inputname(1);
6 if isempty(va)
7 va = 'ans';
8 end
9 disp([va,' is the following non-evaluated MIRtoolbox command:']);
10 method = d.method
11 option = d.option;
12 if not(isempty(option))
13 option
14 end
15 postoption = d.postoption;
16 if not(isempty(postoption))
17 postoption
18 end
19 argument = d.argin;
20 if not(ischar(d.argin))
21 disp('***Argument:')
22 argument
23 end
24 disp(' ');