필터 지우기
필터 지우기

How to check the state response and output response of a state space model

조회 수: 4 (최근 30일)
Yuxing Zhang
Yuxing Zhang 2018년 11월 7일
답변: Honglei Chen 2018년 11월 8일
I now have a SISO state space model like below and get the transfer function, so how can I use MATLAB code to check its state response and output response? Is there any specified codes? Thank you!
A=[0 1 0 0 0 0
0 0 0 0 0 0
0 0 -1 1 0 0
0 0 0 -1 1 0
0 0 0 0 -1 0
0 0 0 0 0 -2];
B=[0;1;0;0;1;1];
C=[0 0 1 0 0 1];
D=0;
sys = ss(A,B,C,D);
TF=tf(sys)

답변 (1개)

Honglei Chen
Honglei Chen 2018년 11월 8일
Here are some examples of exploring responses of a linear system
HTH

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by