On 06.07.2011, at 14:54, Juan Pablo Carbajal wrote: > Hi Lukas, > I was following your example of a wrapper and found the following > the function ss2tf has a different interface than your function ss. > The last argument is not the time sample as in your function but an > index of the input vector > http://www.mathworks.com/help/toolbox/signal/ss2tf.html > > Is there any of the options in your ss function that can handle this > or should that option be added? > > Also, I cannot access tfdata directly nor octave can find it (though > is there in @lti), I am not experienced with objects and may be > something related to that.
Matlab's Signal Toolbox looks like a dump for old Control System Toolbox commands ;-) Systems are handled like matrices: matrix(row_indices, column_indices) system(output_indices, input_indices) To select only certain inputs: sys(:, idx) Regards Lukas ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2d-c2 _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
