comparison m-toolbox/classes/@sigBuilder/cb_exportCommands.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % cb_exportCommands exports a list of commands that can build the described
2 % signal
3 %
4 % M Hewitson
5 %
6 % $Id: cb_exportCommands.m,v 1.1 2008/10/19 11:42:40 hewitson Exp $
7 %
8 function cb_exportCommands(varargin)
9
10 myh = varargin{1};
11 mainfig = varargin{end};
12
13 obj = sigBuilder.buildSignal(mainfig);
14
15 type(obj)
16
17 end
18
19
20