I Have problems with the function ss2tf, matlab say me: Undefined function 'max' for input arguments of type 'sym'.
Ältere Kommentare anzeigen
I want obtain the transfer function with the matrix A,B,C,D but I have problems. I don´t know if this problem is by my matlab R2013a, because in other matlab version 2011 works well. Thanks
2 Kommentare
Mischa Kim
am 27 Jun. 2014
Alejandra, could you please post your code?
Alejandra
am 27 Jun. 2014
Bearbeitet: Star Strider
am 27 Jun. 2014
Antworten (1)
Arkadiy Turevskiy
am 7 Jul. 2014
The first problem with your code is that A,B,C,and D matrices are symbolic, but you re trying to use ss2tf function that works on numeric matrices.
If you don't mind the loss of symbolic nature of your matrices, you can convert them to numeric:
A=double(A);
B=double(B);
C=double(C);
D=double(D);
Then your calculations should work
1 Kommentar
Alejandra
am 8 Jul. 2014
Kategorien
Mehr zu Dynamic System Models finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!