How to plot this equation in 3D?
古いコメントを表示
Dear all,
How do I plot this on matlab?
Z = [(1/x)^2 +y^2]^(1/2)
Thanks.
回答 (2 件)
Basil C.
2018 年 9 月 24 日
You could use the following code
syms x y
z = ((1/x)^2 +y^2)^(1/2)
ezsurf(z)
カテゴリ
ヘルプ センター および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!