Why are some of the outputs' first values ​​not equal to zero?

1 view (last 30 days)
Hi,
My state space system contains 6 outputs and some of them's first values are not zero. In my opinion, when t=0; first values of outputs should be zero, but step command doesn't give me all of them as 0.
It may be because of D, but i'm not sure.
Is there any point which i miss? How can i make first values of y1 an y4 zero? Can it be possible?
Thanks,
clear all
clc
A=[-7.4 -10.6;-0.7 -16.9];
B=[37.3;63.8];
C=[-7.4 0;0 1;1 0;-0.1 -0.14;-0.1 0.13;0.1 0];
D=[37.3;0;0;1;0;0];
sys=ss(A,B,C,D);
t=0:0.01:10;
[y,t]=step(sys,t)

Accepted Answer

Ameer Hamza
Ameer Hamza on 1 Dec 2020
Yes, it is because of matrix 'D'. At t=0, the values of all the states 'x' will be zero, but the value of output 'y' will not be equal to zero for your system. For example, change the line to
[y,t,x]=step(sys,t);
and check the value of 'x'. It starts at 0.

More Answers (0)

Categories

Find more on Dynamic System Models in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!