How to visualize catenoid surface using matlab?
Afficher commentaires plus anciens
please help me for the visualisation of catenoid surface using matlab (with syntex),
Réponses (1)
t = 0:pi/10:2*pi;
r = 2 + cos(t);
[X,Y,Z] = cylinder(r);
surf(X,Y,Z)
Catégories
En savoir plus sur Surface and Mesh Plots 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!
