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 日

0 投票

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