how to plot an ellipse having her equation?
이전 댓글 표시
First, sorry for my English (I'm using the translator), I'm new to matlab, I have a job that needs to plot an ellipse using matlab, I already have the equation, which in this case is "x² / 25 + y² / 9 = 1" , but I don't know anything about matlab, so I don't know how to draw from the equation.
Kind regards.
답변 (1개)
John D'Errico
2019년 11월 12일
First, learn how to write a function.
fun = @(x,y) x.^2 / 25 + y.^2 / 9 - 1;
Note the use of the .^ operators. They will be important in your use of MATLAB.
Next, learn how to use a tool like fimplicit. (Read the help for it. I won't do everything for you.)
Finally, learn why
axis equal
wil be important. If you don't use that, then what is drawn won't look like the ellipse you might expect. See what the figure looks like before you call axis, then look at it after the call.
But really, if you have no idea how to use MATLAB, then READ the getting started tutorials.
카테고리
도움말 센터 및 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!