I want to sketch one sheeted hyperboloid x^2-y^2+z^2=1 using meshgrid of MATLAB

3 次查看(过去 30 天)
my code looks like this.
u=linspace(-10,10,50);
v=linspace(0,2*pi,50);
[u,v]=meshgrid(u,v);
x=cosh(u).*cos(v);
y=sinh(u);
z=cosh(u).*sin(v)
surf(x,y,z)
but it looks like this. What should I fix?

回答(1 个)

KSSV
KSSV 2020-9-16

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by