How to visualize catenoid surface using matlab?

Respuestas (1)

Matt J
Matt J el 8 de Jul. de 2021
Editada: Matt J el 8 de Jul. de 2021
Here is a very similar example from the documentation for the cylinder() command
t = 0:pi/10:2*pi;
r = 2 + cos(t);
[X,Y,Z] = cylinder(r);
surf(X,Y,Z)

Preguntada:

el 8 de Jul. de 2021

Editada:

el 8 de Jul. de 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by