How do I make this ellipse?

16*x^2 + 4*y^2 = 1;

1 件のコメント

John D'Errico
John D'Errico 2021 年 12 月 18 日
編集済み: John D'Errico 2021 年 12 月 18 日
Please stop posting your homework problems. This is the 4th one you have now posted, all with no effort made, one after another, all the same, and all clearly homework.

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

回答 (2 件)

Matt J
Matt J 2021 年 12 月 18 日

1 投票

fimplicit(@(x,y)16*x.^2 + 4*y.^2 -1); axis equal
Voss
Voss 2021 年 12 月 18 日

1 投票

t = 0:0.01:2*pi;
x = 0.25*cos(t);
y = 0.5*sin(t);
figure();
plot(x,y);
axis square

カテゴリ

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

タグ

質問済み:

2021 年 12 月 18 日

編集済み:

2021 年 12 月 18 日

Community Treasure Hunt

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

Start Hunting!

Translated by