need actual model in numerator,denominator form
Mostrar comentarios más antiguos
tf({1 0;0 1},{[1 0 0 0],1;1,[1 0 0 0]})
Respuestas (1)
Star Strider
el 7 de Nov. de 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.
Categorías
Más información sobre Sparse State-Space Models en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!