Points inside the sphere
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Torsten
il 1 Nov 2022
Hint:
Use the function
fun = @(x,y,z) ((x-X)/a).^2 + ((y-Y)/b).^2 + ((z-Z)/c).^2 - 1.0;
Categorie
Scopri di più su Interpolation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!