Points inside the sphere
2 ビュー (過去 30 日間)
古いコメントを表示
Aliaksandra Sikirzhytskaya
2022 年 11 月 1 日
編集済み: James Tursa
2022 年 11 月 1 日
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!