I Have problems with the function ss2tf, matlab say me: Undefined function 'max' for input arguments of type 'sym'.
이전 댓글 표시
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
Mischa Kim
2014년 6월 27일
Alejandra, could you please post your code?
Alejandra
2014년 6월 27일
편집: Star Strider
2014년 6월 27일
답변 (1개)
Arkadiy Turevskiy
2014년 7월 7일
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
카테고리
도움말 센터 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!