Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
matlab三维绘图教程_MATLAB课程,希望能够帮助你!!!。
01
plot函数绘制三维图形
plot3(x,y,z)函数
plot3(x,y,z) —— x,y,z是长度相同的向量
plot3(X,Y,Z) —— x,y,z是维数相同的矩阵
plot3(x,y,z,s) —— 带开关量
plot3(x1,y1,z1,’s1’, x2,y2,z2,’s2’, …)
1. Plot3 (x, y, z) function
plot3(x,y,z)-x,y,z are vectors of the same length
plot3(x,y,z)-x,y,z are matrices with the same dimensions
plot3(x,y,z,s)-with switch
plot3(x1,y1,z1,’s1’, x2,y2,z2,’s2’, …)
例1:
在例1的基础上,同时画两个三维图形
二维图的坐标轴和标题,以及基本特性的设置都对三维绘图适用,如例2。
02
surf函数绘制三维图形
surf(x,y,z)函数
用surf命令绘制可以得到的是着色的三维曲面图。
surf(x,y,z) function
What you can get by drawing with the surf command is a colored three-dimensional surface.
例3:
meshgrid是MATLAB中用于生成网格采样点的函数。
meshgrid is a function used to generate grid sampling points in MATLAB.
03
mesh函数绘制三维图形
mesh(x,y,z)函数用于绘制三维网格图
mesh(x,y,z,c)
(x,y)是网格坐标矩阵;
z是网格上的高度矩阵;
c用于指定在不同高度下的曲面颜色。c省略时,默认z=c,颜色的设定正比于图像的高度。
The mesh (x, y, z) function is used to draw a three-dimensional grid map
mesh(x,y,z,c)
(x,y) is the grid coordinate matrix;
z is the height matrix on the grid;
c is used to specify the color of the surface at different heights. When c is omitted, z=c is the default, and the color setting is proportional to the height of the image.
参考资料:百度、谷歌翻译
本文由LearningYard学苑原创,如有侵权,请联系删除。
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
上一篇
已是最后文章
下一篇
已是最新文章