Mesh Laplacian

버전 1.0.0.0 (1.39 KB) 작성자: Darren Weber
Calculate Laplacian for triangulated mesh.
다운로드 수: 4.2K
업데이트 날짜: 2003/1/24

라이선스 없음

MESH_LAPLACIAN: Laplacian of irregular triangular mesh

Useage: [lap,edge] = mesh_laplacian(vertex,face)

Returns 'lap', the Laplacian (2nd spatial derivative) of an irregular triangular mesh, and 'edge', the linear distances between vertices of 'face'. 'lap' and 'edge' are square, [Nvertices,Nvertices] in size, sparse in nature.

It is assumed that 'vertex' contains the (x,y,z) Cartesian coordinates of each vertex and that 'face' contains the triangulation of vertex with indices into 'vertex' that are numbered from 1:Nvertices. For information about triangulation, see 'help convhull' or 'help convhulln'.

The neighbouring vertices of vertex 'i' is given by:

k = find(edge(i,:));

The math of this routine is given by:

Oostendorp, Oosterom & Huiskamp (1989), Interpolation on a triangulated 3D surface. Journal of Computational Physics, 80: 331-343.

See also the "Mesh Laplacian Interpolation Operator" on the matlab central file exchange.

인용 양식

Darren Weber (2024). Mesh Laplacian (https://www.mathworks.com/matlabcentral/fileexchange/1875-mesh-laplacian), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R12
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Need a link in the description to the companion function: Mesh Laplacian Interpolation Operator