how to find points inside a 3d delaunayTriangulation object?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Philippe Corner
el 2 de Mzo. de 2022
Comentada: Philippe Corner
el 2 de Mzo. de 2022
load('qs.mat')
figure; hold on
trisurf(K,s.Points(:,1),s.Points(:,2),s.Points(:,3),'FaceColor','none')
scatter3(x,y,z,20,'filled','k')
view(-30,10)
0 comentarios
Respuesta aceptada
David Hill
el 2 de Mzo. de 2022
p=pointLocation(s,[x,y,z]);
f=find(~isnan(p));%index of points (x,y,z) inside
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!