Mercurial > hg > camir-aes2014
comparison toolboxes/MIRtoolbox1.3.2/MIRToolbox/@mirdesign/display.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e9a9cd732c1e |
---|---|
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(' '); |