Why doesn't delaunayTriangulation work on meshgrid input, while delaunay does?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
See the code below. delaunayTriangulation(x, y) should also work, or not?
n = 8;
gv = linspace(0,1,n);
[x, y] = meshgrid(gv);
xv = x(:); yv = y(:);
% Compute the delaunay triangulation
TRI = delaunay(x, y); % this works!
% TRI = delaunayTriangulation(x, y) % does not work
TRI = delaunayTriangulation(xv, yv);
1 commentaire
Maxandre Jacqueline
le 14 Août 2018
I would also be interested to know how to combine meshgrid with delaunay triangulation.
Réponses (0)
Voir également
Catégories
En savoir plus sur Delaunay Triangulation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!