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 件)

Matt J
Matt J 2018 年 9 月 24 日
編集済み: Matt J 2018 年 9 月 24 日

0 投票

You can use the surf() command.
Basil C.
Basil C. 2018 年 9 月 24 日

0 投票

You could use the following code
syms x y
z = ((1/x)^2 +y^2)^(1/2)
ezsurf(z)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

質問済み:

2018 年 9 月 24 日

回答済み:

2018 年 9 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by