马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
现在我要求一个输入的相应,这个系统是个二阶的系统,系统为model_f=tf([1,5],[1,13,40]);输入U;问题可以简单的写成下面的代码。
u(1)=0;
time_step=0.001;
time_end=10;
t=0:time_step:time_end;
count=length(t);
ym(1)=0;
for i=2:count
u(i)=ym(i-1)+1;
[ym(i),t]=lsim(model_f,u(i),t);
end
??? Error using ==> rfinputs
Input data U and time vector T must have the same number of samples.
我想实现u随着ym变化,再作为输入得到下一个点的ym值。
请问我怎么实现这个功能啊? |