其他分享
首页 > 其他分享> > MatLab---for循环绘图+subplot+for循环嵌套

MatLab---for循环绘图+subplot+for循环嵌套

作者:互联网

1.for的循环绘图

n=2;
for i=1:n
x=linspace(0,2*pi,20*i);
y=sin(x);
subplot(1,n,i);
plot(x,y,'ko-');
xlabel('x');
ylabel('y');
title('sin plot');
end

2.for循环的嵌套

rows=4;
columns=5;
mat=NaN(rows,columns);
for i=1:rows
  for j=1:columns
    mat(i,j)=i*j;
  end
end

3.subplot的使用

 

标签:subplot,plot,rows,---,循环,sin,columns
来源: https://www.cnblogs.com/lsj89/p/16171928.html