trisurfc

版本 1.3.0.0 (5.2 KB) 作者: Jack Kohoutek
Extends the MATLAB command trisurf() to put a contour plot below the mesh.
1.8K 次下载
更新时间 2009/9/10

查看许可证

编者注: Darren Engwirda is a co-author

[cout,hout] = trisurfc(xin,yin,zin,N)

Regularly just called by with the following syntax to produce a plot:
trisurfc(xin,yin,zin,N)
Where xin,yin,zin are 1-D arrays of the x,y,z triples of the points in your mesh.

Contouring and surface function for functions defined on triangular meshes
xin, yin, zin, are arrays of x,y,z values of the points for your surface.
So [x(1) y(1) z(1)] defines the first point, etc.
The last input N defines the contouring levels. There are several options:
N scalar - N number of equally spaced contours will be drawn
N vector - Draws contours at the levels specified in N

A special call with a two element N where both elements are equal draws a single contour at that level.

[C,H] = TRISURFC(...)
This syntax can be used to pass the contour matrix C and the contour handels H to clabel by adding clabel(c,h) or clabel(c) after the call to TRICSURFC.

Contour line code by Darren Engwirda - 2005
Updated 15/05/2006
Surface code added by Jack Kohoutek - 2009

引用格式

Jack Kohoutek (2024). trisurfc (https://www.mathworks.com/matlabcentral/fileexchange/25262-trisurfc), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2008a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Triangulation Representation 的更多信息
致谢

参考作品: Contours for triangular grids

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.3.0.0

Adding Darren Engwirda as a second author. Thanks.

1.1.0.0

Just updated the desc.

1.0.0.0