How to define transfer function into the tf or ss format
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
If a transfer function is given like Lt(s) = F*(s*I-A)^(-1)*B, how to get its relative tf() or ss() format so that bodeplot or nyquist can be used? Thx.
0 comentarios
Respuesta aceptada
Arkadiy Turevskiy
el 30 de Abr. de 2012
sys=ss(A,B,C,0);
bode(sys);
nyquist(sys);
HTH. Arkadiy
0 comentarios
Más respuestas (1)
Honglei Chen
el 29 de Abr. de 2012
This is already in state space form. Your A,B,F are just A,B,C. Your D is 0
0 comentarios
Ver también
Categorías
Más información sobre Time and Frequency Domain Analysis en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!