Need to get matlab to display the continuous time transfer function
조회 수: 1 (최근 30일)
이전 댓글 표시
clc;
% (b)
% state variable model
A = [1 3 0; -3 0 7; -5 -4 -8];
B = [-1; 0; 1];
C = [1 0 0];
D = 0;
% get numerator & denominator of transfer function using ss2tf
[num, den] = ss2tf(A,B,C,D);
% converting numerator & denominator to transfer function
system = tf(num,den)
That is my code. Everything works [as] I get the right numerator and denominator.
The problem is the comman window won't display the transfer function and yes, I have the [Control System Toolbox] installed.
댓글 수: 0
채택된 답변
Les Beckham
2024년 9월 12일
편집: Les Beckham
2024년 9월 12일
Please explain exactly what the problem is. You need the Control System toolbox, not the "command tool box", whatever that is.
A = [1 3 0; -3 0 7; -5 -4 -8];
B = [-1; 0; 1];
C = [1 0 0];
D = 0;
%get numerator & denominator of transfer function using ss2tf
[num, den] = ss2tf(A,B,C,D);
%converting numerator & denominator to transfer function
system = tf(num,den);
display(system)
which display(system)
댓글 수: 2
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!