need actual model in numerator,denominator form
Show older comments
tf({1 0;0 1},{[1 0 0 0],1;1,[1 0 0 0]})
Answers (1)
Star Strider
on 7 Nov 2019
You can get the numerator and denominator as:
sys = tf({1 0;0 1},{[1 0 0 0],1;1,[1 0 0 0]});
Num = sys.Numerator
Den = sys.Denominator
and the symbolic display with:
TransFcn = sys
producing:
TransFcn =
From input 1 to output...
1
1: ---
s^3
2: 0
From input 2 to output...
1: 0
1
2: ---
s^3
Continuous-time transfer function.
Categories
Find more on Sparse State-Space Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!