Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
Yuxing Zhang
Yuxing Zhang le 7 Nov 2018
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)
  2 commentaires
Yuxing Zhang
Yuxing Zhang le 7 Nov 2018
with initial condition [1;1;0;0;0;0]?
Yuxing Zhang
Yuxing Zhang le 7 Nov 2018
this is MIMO systerm, sorry for my mistake

Connectez-vous pour commenter.

Réponses (1)

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

Catégories

En savoir plus sur Dynamic System Models dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by