绘图基础二线的格式线型plot(x,y,线的格式)线条颜色plot(x,y,线的格式)数据点的格式markerplot(x,y,数据点格式)曲线格式其他plot(x,y,属性名称,属性值)线条宽度标记点边缘颜色填充色图形大小子图绘制subplot语法:subplot(x,y,i)x=0:0.1:2*pi;
y1=sin(x);
y2=cos(x);
y3=x;
y4=x.^2;
subplot(2,2,1),plot(x,y1);
subplot(2,2,2),plot(x,y2);
subplot(2,2,3),plot(x,y3);
subplot(2,2,4),plot(x,y4);叠加绘图模式hold语法:hold onhold offx=0:0.1:2*pi;
y1=sin(x);
y2=cos(x);
plot(x,y1);
hold on;
plot(x,y2);
技术
· 2019-01-04
· 303 人浏览
一只胖橘