how do i ensure that the correct function is called when the same function is in multiple toolboxes
Ältere Kommentare anzeigen
the function ss appears to me included in a number of toolboxes
>> which -all ss
/Applications/MATLAB_R2016b.app/toolbox/ident/ident/@idParametric/ss.m % idParametric method
/Applications/MATLAB_R2016b.app/toolbox/shared/controllib/engine/@StaticModel/ss.m % StaticModel method
/Applications/MATLAB_R2016b.app/toolbox/signal/signal/@dfilt/ss.m % dfilt method
when running the following i get this error msg; "Undefined function 'ss' for input arguments of type 'double'"
>> tau = 5;
K = 2;
A = -1/tau;
B = K/tau;
C = 1;
D = 0;
>>
>> sys = ss(A,B,C,D)
Undefined function 'ss' for input arguments
of type 'double'.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!