Filter löschen
Filter löschen

find the vertices from delaunay triangulation

7 Ansichten (letzte 30 Tage)
Elysi Cochin
Elysi Cochin am 17 Okt. 2017
Bearbeitet: KSSV am 17 Okt. 2017
i creates a Delaunay triangulation using the following lines
X = [y(:,1) x(:,1)];
dt = delaunayTriangulation(X);
The output "dt" is a matrix with 3 columns (a,b,c). How can i find the vertices of the triangles so that i get (xa,ya) (xb,yb) and (xc,yc)

Akzeptierte Antwort

KSSV
KSSV am 17 Okt. 2017
Bearbeitet: KSSV am 17 Okt. 2017
x = rand(10,1) ; % a randoms data
y = rand(10,1) ;
dt = delaunayTriangulation(x,y) ; % delaunay triangulation
points = dt.Points ; % points
tri = dt.ConnectivityList ; % nodal connectivity
x = points(:,1) ;
X = x(tri) ;
y = points(:,2) ;
Y = y(tri) ;

Weitere Antworten (0)

Kategorien

Mehr zu Delaunay Triangulation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by