There is a continuous-time system shown below:
The matlab codes are:
t=0.01;
syms s;
a2=[0 0 -285.7143;0 -0.4533 9.0662;5.2650 -5.2131 -42.5958];
b2=[571.4286;0;82.5714];
c2=[1 0 0];
A2=expm(a2*t);
B2=(int(expm(a2*s),0,t)*b1);
However, when I calculate B1, the computer displays 'output truncated'.
please help me.
thanks a lot.