How do I make this ellipse?

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

1 Comment

John D'Errico
John D'Errico on 18 Dec 2021
Edited: John D'Errico on 18 Dec 2021
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.

Sign in to comment.

Answers (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

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Asked:

on 18 Dec 2021

Edited:

on 18 Dec 2021

Community Treasure Hunt

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

Start Hunting!