⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gm_polytri.m

📁 matlab有限元分析工具,比经较全面的一个手册,请大家下载呀
💻 M
字号:
function [varargout]=gm_polytri(varargin)%% gm_polytri computes the constrained Delaunay triangulation of a polygon%%   Tcl/Tk:  gmset trilist [gm_polytri $coord $edgelist]%%   Matlab:  trilist = gm_polytri(coord, edgelist);%% This routine triangulates a planar polygon.  The matrix coord holds%% the coordinates of the polygons vertices, one vertex per row.  The%% matrix edgelist has a row for each edge of the polygon.  Each row%% consists of two integers which index the two vertices (i.e., rows%% of the coord matrix) at either end of the edge.  The return argument%% trilist is an matrix of triangles in the triangulation.  Each row of%% this matrix is one triangle.  A row consists of three integers which%% index the three vertices of the triangle.  The triangulation computed%% by this routine is the constrained Delaunay triangulation.  It uses%% an unpublished O(n^2 log n) algorithm which is fairly robust.gm_errmsg('gm_polytri')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -