I want to sketch one sheeted hyperboloid x^2-y^2+z^2=1 using meshgrid of MATLAB
3 views (last 30 days)
Show older comments
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/361060/image.png)
0 Comments
Answers (1)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!