How to define transfer function into the tf or ss format

조회 수: 4 (최근 30일)
Ce Shang
Ce Shang 2012년 4월 29일
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.

채택된 답변

Arkadiy Turevskiy
Arkadiy Turevskiy 2012년 4월 30일
sys=ss(A,B,C,0);
bode(sys);
nyquist(sys);
HTH. Arkadiy

추가 답변 (1개)

Honglei Chen
Honglei Chen 2012년 4월 29일
This is already in state space form. Your A,B,F are just A,B,C. Your D is 0

카테고리

Help CenterFile Exchange에서 Time and Frequency Domain Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by