How to visualize catenoid surface using matlab?

please help me for the visualisation of catenoid surface using matlab (with syntex),

답변 (1개)

Matt J
Matt J 2021년 7월 8일
편집: Matt J 2021년 7월 8일
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)

카테고리

질문:

2021년 7월 8일

편집:

2021년 7월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by