How can I get all possible coordinate from implicit function ?
Afficher commentaires plus anciens
How can I get all possible coordinate (x,y,z) from this function function
cos(x) + cos(y) + cos(z) = 0
I've tried this but, it did work.
syms X Y Z z
counter = 1;
for x = -5:5
for y = -5:5
Data.X(counter) = x;
Data.Y(counter) = y;
Data.Z(counter) = solve(cos(x) + cos(y) + cos(z) == 0,z);
counter = counter + 1 ;
end
end
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Numbers and Precision dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!