Prev: Array with different length columns
Next: DCC GARCH
From: Punamchandra on 18 Sep 2009 08:58 I want to append a signal to a signal builder block through Matlab script. With the all the combinations of the command the signals are not appended. block = signalbuilder([], 'create', [0 5], {[2 2];[0 2]}); signalbuilder(block, 'append', [0 5], [0 2]); Please advice.
From: checker i on 25 Sep 2009 12:46 "Punamchandra " <pckul(a)yahoo.com> wrote in message <h9005l$k97$1(a)fred.mathworks.com>... > I want to append a signal to a signal builder block through Matlab script. > With the all the combinations of the command the signals are not appended. > > block = signalbuilder([], 'create', [0 5], {[2 2];[0 2]}); > signalbuilder(block, 'append', [0 5], [0 2]); > > Please advice. Since you are creating a block with two signals, the append statement should have the same number of data rows as the signal number. Try this instead signalbuilder(block, 'append', [0 5], {[2 2];[0 2]});
|
Pages: 1 Prev: Array with different length columns Next: DCC GARCH |