Points inside the sphere
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aliaksandra Sikirzhytskaya
el 1 de Nov. de 2022
Editada: James Tursa
el 1 de Nov. de 2022
How to find if the points are inside or on the edge of the ellipsoid with the center at X Y Z and radiuses a b c?
0 comentarios
Respuesta aceptada
James Tursa
el 1 de Nov. de 2022
Editada: James Tursa
el 1 de Nov. de 2022
Just plug your points into the ellipsoid equation and see if they work. E.g.,
((x - X)/a).^2 + ((y - Y)/b).^2 + ((z - Z)/c).^2 <= 1
Where x, y, z are the coordinates of your points.
0 comentarios
Más respuestas (1)
Torsten
el 1 de Nov. de 2022
Hint:
Use the function
fun = @(x,y,z) ((x-X)/a).^2 + ((y-Y)/b).^2 + ((z-Z)/c).^2 - 1.0;
0 comentarios
Ver también
Categorías
Más información sobre Surface and Mesh Plots 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!