Points inside the sphere
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
James Tursa
2022-11-1
编辑:James Tursa
2022-11-1
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 个评论
更多回答(1 个)
Torsten
2022-11-1
Hint:
Use the function
fun = @(x,y,z) ((x-X)/a).^2 + ((y-Y)/b).^2 + ((z-Z)/c).^2 - 1.0;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!