为什么matlab程序老是报 plot Vectors must be the same lengths.的错误?..t=0:0.01:1;[t,x,y]=sim('orange',2)plot(t,y);maxy=max(y) %求响应的最大值ys=y(length(t)) %求响应的终值pos=(maxy-ys)/ys %求取超调量gridys=y(length(t)) %

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/08 18:05:39
为什么matlab程序老是报 plot Vectors must be the same lengths.的错误?..t=0:0.01:1;[t,x,y]=sim('orange',2)plot(t,y);maxy=max(y) %求响应的最大值ys=y(length(t)) %求响应的终值pos=(maxy-ys)/ys %求取超调量gridys=y(length(t)) %

为什么matlab程序老是报 plot Vectors must be the same lengths.的错误?..t=0:0.01:1;[t,x,y]=sim('orange',2)plot(t,y);maxy=max(y) %求响应的最大值ys=y(length(t)) %求响应的终值pos=(maxy-ys)/ys %求取超调量gridys=y(length(t)) %
为什么matlab程序老是报 plot Vectors must be the same lengths.的错误?..
t=0:0.01:1;
[t,x,y]=sim('orange',2)
plot(t,y);
maxy=max(y) %求响应的最大值
ys=y(length(t)) %求响应的终值
pos=(maxy-ys)/ys %求取超调量
grid
ys=y(length(t)) %求响应的终值
L=length(t);
while(y(L)>0.98*ys)&(y(L)

为什么matlab程序老是报 plot Vectors must be the same lengths.的错误?..t=0:0.01:1;[t,x,y]=sim('orange',2)plot(t,y);maxy=max(y) %求响应的最大值ys=y(length(t)) %求响应的终值pos=(maxy-ys)/ys %求取超调量gridys=y(length(t)) %
可能是orange.mdl模型中没有输出端口Out1吧?所以y的值不对.

为什么matlab程序老是报 plot Vectors must be the same lengths.的错误?..t=0:0.01:1;[t,x,y]=sim('orange',2)plot(t,y);maxy=max(y) %求响应的最大值ys=y(length(t)) %求响应的终值pos=(maxy-ys)/ys %求取超调量gridys=y(length(t)) % matlab画图x = 0:0.01:10; y =sin(2*x)*cos(100*x)/(2*x); plot(x, y)这个程序为什么matlab总是报错?哪里错了?求大神赐教 下面的分段函数用matlab画图为什么老是报错?x=1:0.1:30;y=(5*1.0558-5*1.0558^(x-1))/(-0.0558).*(x4&&x6);plot(x,y); MATLAB中画图函数,plot(x,f)语句为什么一直报错?f是x的函数,求大神指导, matlab程序 这句是什么意思plot(x(:,2,2)) 为什么程序老是没有响应? Matlab程序报错,高手帮帮忙啊!在线等!h=0:0.01:1.2;y=sqrt(1.78*h-h.^2)*(h-0.89)+asin(h/0.89-1)+pi/2plot(h,y) x=0:0.1:10;y=(1+exp(x-1))^-1;plot(x,y) 这个matlab程序为什么不对?x的取值可以随意改. 如何用matlab来绘制二维网格已知x和y的值,用了以下的程序,为什么只有竖线没有横线呢?I=meshgrid(x,y);plot(x,I,'k');plot(I,y,'k'); matlab程序中plot(x(:,我知道plot是画图的意思,可是我不知道括号里面的“x(:, matlab中这句语句有什么作用?delete(findobj(gcf,'type','text'));为什么在程序中有它没它都一样?x=-10:0.1:10;y=10:0.1:20;subplot(221);plot(sin(x));subplot(222);plot(cos(x));subplot(223);plot(y.^2);subplot(224);plot(1./y);delete(fin delete(findobj(gcf,'type','text')); matlab中这句语句的作用是什么?为什么在下面程序中有它没它都一样x=-10:0.1:10;y=10:0.1:20;subplot(221);plot(sin(x));subplot(222);plot(cos(x));subplot(223);plot(y.^2);subplot(224);plot(1./y);d matlab中plot函数中为什么要加abs函数,例如plot(abs(x)); matlab程序中plot(t,y(:,1))意思如下程序 帮忙释义一下 谢谢了figure(1);plot(T,Y(:,1),'-k');figure(2)plot(Y(end-2000:end,1),Y(end-2000:end,2),'-k'); matlab画图报错、、、、clc,clearx=-10:0.1:10;y=x.*(x4);plot(x,y) MATLAB求助,程序为什么出不了图x=0:0.1:1 y=x.*exp(-x) plot(x,y),xlabel('x'),ylabel('y'),title('y=x*exp(-x)') 在matlab中运行如下程序:x = 0:1:10; y = x.^2-10*x+15; plot(x,y);为什么x后面有一小点:(x.^2);这一小点有什么意义? 用matlab绘制y=sin(x)*cos(x)我的程序如下x=0:1:40;y=sin(x)*cos(x);plot(x,y)为什么运行会出错,求指教