フィルターのクリア

plotting an ellipsoild with an equation that is not set equal to one variable

2 ビュー (過去 30 日間)
SonOfAFather
SonOfAFather 2012 年 8 月 31 日
編集済み: Torsten 2022 年 6 月 13 日
I thought this would be simple and straight forward but i really don't have a clue here. I need to plot an Ellipsoid with the eqution:
1 = (x^2)/4 + (y^2)/9 + (z^2)
Thanks, any help would be great. will "mupad" be helpful here?

採用された回答

Image Analyst
Image Analyst 2012 年 8 月 31 日
Did you look up ellipsoid in the help? When or if you do, you'll find your answer with very very slight modifications to their demo:
[x, y, z] = ellipsoid(0,0,0, 2,3,1, 30);
surfl(x, y, z)
colormap copper
axis equal
  4 件のコメント
Daarshini Anbalagan
Daarshini Anbalagan 2022 年 6 月 13 日
hello. i would like to know how did you get the value that is stated in the bracket?
Torsten
Torsten 2022 年 6 月 13 日
編集済み: Torsten 2022 年 6 月 13 日
It's just an example and not related to the original question.
To plot this ellipsoid, the code should be
(Center: (0,0,0), Half-axis: (sqrt(4),sqrt(9),sqrt(1)) = (2,3,1))
[x, y, z] = ellipsoid(0,0,0, 2,3,1, 30);
surfl(x, y, z)
colormap copper
axis equal

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D Function Plots についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by