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 Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by