How to plot this equation in 3D?

7 ビュー (過去 30 日間)
Joshua Lelemia Irvine
Joshua Lelemia Irvine 2018 年 9 月 24 日
回答済み: Basil C. 2018 年 9 月 24 日
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 日
You can use the surf() command.

Basil C.
Basil C. 2018 年 9 月 24 日
You could use the following code
syms x y
z = ((1/x)^2 +y^2)^(1/2)
ezsurf(z)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by