关于size的一个问题,敬请赐教
M文件编辑器中的内容:function Y=fplot_fun(x)
Y(:,1)=200*sin(x(:))./x(:);
Y(:,2)=x(:).^2;
命令窗口的内容:
fh=@fplot_fun;
[X,Y]=fplot(fh,[-20,20],2e-4);
L=size(X);
px=-20:40/(L(1)+1):20;
py=fplot_fun(px);
subplot(2,1,1),plot(X,Y,'linewidth',2),title('fplot')
subplot(2,1,2),plot(px,py,'linewidth',2),title('plot')
请问上面的X就是{-20,20]吗?那么size(X)应该怎么理解呢?