How do I make this ellipse?
古いコメントを表示
16*x^2 + 4*y^2 = 1;
1 件のコメント
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 件)
fimplicit(@(x,y)16*x.^2 + 4*y.^2 -1); axis equal
t = 0:0.01:2*pi;
x = 0.25*cos(t);
y = 0.5*sin(t);
figure();
plot(x,y);
axis square
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

