三维图 mesh surf
此外,还有两个和mesh函数相似的函数,即带等高线的三维网格曲面函数meshc和带底座的三维网格曲面函数meshz,其用法和mesh类似。不同的是,meshc还在xy平面上绘制曲面在z轴方向的等高线,meshz还在xy平面上绘制曲面的底座。
surf函数也有两个类似的函数,即具有等高线的曲面函数surfc和具有光照效果的曲面函数surfl。
例518 在xy平面内选择[-8, 8]×[-8, 8]绘制函数,
[x,y]=meshgrid(-8:0.5:8);
z=sin(sqrt(x.^2+y.^2))./sqrt(x.^2+y.^2+eps);
subplot(2,2,1);
meshc(x,y,z);
title(‘meshc’);
subplot(2,2,2);
meshz(x,y,z);
title(‘meshz’);
subplot(2,2,3);
surfc(x,y,z);
title(‘surfc’);
subplot(2,2,4);
surfl(x,y,z);
title(‘surfl’);
subplot(a,b,c);一共要画出ab张图,c是第几张图
plot(x,y,‘、o’);x轴,y轴,
plot(x,y,'--r'); %画出垂直虚线 颜色:红色
绘制等高线图
contourf(X0D,Y0D,p0);
contour(X0D,Y0D,p0,’ShowText’,’on’); % 显示等高线的值
https://jingyan.baidu.com/article/f54ae2fc1e10fe1e92b849f8.html
https://www.cnblogs.com/stxs/p/8617210.html
plot
plots each vector pairs (x, y), where x= [1…n], n=length (y)
Stem
绘制离散的序列点