How to define transfer function into the tf or ss format

4 Ansichten (letzte 30 Tage)
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.

Akzeptierte Antwort

Arkadiy Turevskiy
Arkadiy Turevskiy am 30 Apr. 2012
sys=ss(A,B,C,0);
bode(sys);
nyquist(sys);
HTH. Arkadiy

Weitere Antworten (1)

Honglei Chen
Honglei Chen am 29 Apr. 2012
This is already in state space form. Your A,B,F are just A,B,C. Your D is 0

Kategorien

Mehr zu Time and Frequency Domain Analysis finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by