How to create marching triangulation or advance front mesh in Matlab ??

조회 수: 5 (최근 30일)
Ramesh Bala
Ramesh Bala 2018년 7월 27일
댓글: KSSV 2018년 8월 1일
I have used delauney triangulation method in a grid (which created ortho trias)
I would like to know how to create marching trias/advancing trias ?
This is the code created for a small mesh grid
It creates two figures one with triangular mesh another with just grid points.
How to create marching trias for figure (2)
clc
close all
[X,Y]= meshgrid(1:11);
figure; hold on;
plot(X,Y,'k');
plot(Y,X,'k');axis off
grid on
tri = delaunay(X,Y);
figure(1)
trimesh(tri,X,Y)
figure(2)
plot(X,Y,'.')

채택된 답변

KSSV
KSSV 2018년 7월 27일
  댓글 수: 3
Ramesh Bala
Ramesh Bala 2018년 8월 1일
gone through it ,most seems to be for structured applications. It's there for unstruc too ,but the grid need to be unstruc for the process to follow.
KSSV
KSSV 2018년 8월 1일
That code generates unstructured mesh.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by