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

3 Ansichten (letzte 30 Tage)
Rayane BENYOUCEF
Rayane BENYOUCEF am 6 Aug. 2018
Bearbeitet: Aquatris am 7 Aug. 2018
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

Akzeptierte Antwort

Aquatris
Aquatris am 7 Aug. 2018
Bearbeitet: Aquatris am 7 Aug. 2018
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.

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Performance 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