0
a warning message

t=0:0.05:5;

s=poly(0,'s');

tf=(s+1)/((s-1)*(s+2)*(s+3));

clf(0);

xset("window",0);

show_window();

plot2d([t',t'],[csim('step',t,tf2ss(tf))',0*t']) WARNING: csim: Input argument #1 is assumed continuous time.

When I run the above code I get the warning message, but the code runs great. It seems that t is defined OK, what's up?


Scilab 03-03-18, 2:51 a.m. maxcy
0
It is just a warning. Ideally csim() will expect a syslin list (SIMO linear system) in continuous time. If you dont do this, it will assume a continuous time system.
05-03-18, 12:44 p.m. rupakrokade


Log-in to answer to this question.