How to visualize catenoid surface using matlab?
显示 更早的评论
please help me for the visualisation of catenoid surface using matlab (with syntex),
回答(1 个)
t = 0:pi/10:2*pi;
r = 2 + cos(t);
[X,Y,Z] = cylinder(r);
surf(X,Y,Z)
类别
在 帮助中心 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
