Filter löschen
Filter löschen

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

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

Antworten (1)

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

Kategorien

Mehr zu Dynamic System Models finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by