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

17 views (last 30 days)
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)

Answers (1)

Honglei Chen
Honglei Chen on 8 Nov 2018
Here are some examples of exploring responses of a linear system
HTH

Categories

Find more on Dynamic System Models in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!