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

76 次查看(过去 30 天)
SHOTA TAKINO
SHOTA TAKINO 2020-10-7
2次元上での楕円の描き方がわかりません。
教えていただけるとありがたいです。

回答(1 个)

Akira Agata
Akira Agata 2020-10-8
いろいろなやり方がありますが、たとえば陰関数をプロットする 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

类别

Help CenterFile Exchange 中查找有关 ライン プロット 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!