2次元上で楕円を描く​にはどのようにしたら​よいでしょうか。

28 vues (au cours des 30 derniers jours)
SHOTA TAKINO
SHOTA TAKINO le 7 Oct 2020
2次元上での楕円の描き方がわかりません。
教えていただけるとありがたいです。

Réponses (1)

Akira Agata
Akira Agata le 8 Oct 2020
いろいろなやり方がありますが、たとえば陰関数をプロットする fimplicit 関数を使う方法はいかがでしょうか?
一例として、楕円をあらわす方程式 (x/a)^2 + (y/b)^2 = 1 を a=5, b=2 としてプロットすると以下のようになります。
a = 5;
b = 2;
fnc = @(x,y) (x/a).^2 + (y/b).^2 -1;
figure
fimplicit(fnc)
ylim([-5 5])
grid on

Community Treasure Hunt

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

Start Hunting!