plot(tout,x.signals.values(2:end,1));
在上面的语句中x是model中to workspace输出的变量,我的想法是画出结构体中第一列2到最后一个元素的图
然而就是报错如下
??? Error using ==> plot
Vectors must be the same lengths.
Error in ==> C:\MATLAB6p5p1\work\p133m.m
On line 12 ==> plot(tout,x.signals.values(2:end,1));
是不是tout与输出的长度不同,我应该怎么处理才可以得到想要的结果
请高手赐教 谢谢先