Azzera filtri
Azzera filtri

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

4 visualizzazioni (ultimi 30 giorni)
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)

Risposte (1)

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

Categorie

Scopri di più su Dynamic System Models in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by