フィルターのクリア

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)
  2 件のコメント
Yuxing Zhang
Yuxing Zhang 2018 年 11 月 7 日
with initial condition [1;1;0;0;0;0]?
Yuxing Zhang
Yuxing Zhang 2018 年 11 月 7 日
this is MIMO systerm, sorry for my mistake

サインインしてコメントする。

回答 (1 件)

Honglei Chen
Honglei Chen 2018 年 11 月 8 日
Here are some examples of exploring responses of a linear system
HTH

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by