Why FOR LOOP doesn't work for the descrete state space?

3 ビュー (過去 30 日間)
Rayane BENYOUCEF
Rayane BENYOUCEF 2018 年 8 月 6 日
編集済み: Aquatris 2018 年 8 月 7 日
Hello I want to plot the states of the system shown in the code attached. but the problem is that when I plot both descrete and continous system using ss, I get the right plotting but when i use the FOR LOOP the descrete state space doesn't seem to give the right plotting. Can anyone give an explaination for that because the FOR LOOP seems to work evectivelly with the descrete system? The following image shows both the descrete and continuous state system plotting using ss
This image shows the continuous state using FOR LOOP
but when I plot the descrete state system using the FOR LOOP I get a wrong plotting
Thanks in advance

採用された回答

Aquatris
Aquatris 2018 年 8 月 7 日
編集済み: Aquatris 2018 年 8 月 7 日
The reason is continous time and discrete time A and B matrices are different. In the code you are not using the right A and B matrices.
You should have the following code for discrete time;
sysDes=ss(expm(A*T),inv(A)*(expm(A*T)-eye(2))*B,C,D,T);
Also in discrete time you do not use integration operation. The discrete time state space equation already includes the integration step;
x[k+1] = Ad*x[k]+Bd*u
I recommend you check out how to discretize a continuous time state space to better understand this. Wikipedia has a nice article on it. You do not simply use the same A and B matrices.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by