Linear equation of circle

2 ビュー (過去 30 日間)
ANDREAS KOUNTOURIS
ANDREAS KOUNTOURIS 2022 年 2 月 12 日
コメント済み: ANDREAS KOUNTOURIS 2022 年 2 月 15 日
Hello, consider having a general equation of circle like x^2+y^2=r^2.
A way to linear the circle is to "cut the circle into horizintal or vertical slices". Any idea how could I transfer this idea in matlab equations?
Thank you.
  6 件のコメント
DGM
DGM 2022 年 2 月 12 日
編集済み: DGM 2022 年 2 月 12 日
How do you propose to make a circle out of a straight line? Are you asking how to create a polygon? Or to create a series of parallel lines?
Voss
Voss 2022 年 2 月 12 日
Plotting in polar coordinates would allow you to plot a circle while avoiding non-linear terms:
t = 0:0.01:2*pi;
polarplot(t,ones(size(t)),'LineWidth',2);

サインインしてコメントする。

採用された回答

DGM
DGM 2022 年 2 月 12 日
編集済み: DGM 2022 年 2 月 12 日
You mean like this?
r = 1;
y = linspace(-r,r,50);
xr = sqrt(r^2 - y.^2);
xl = -sqrt(r^2 - y.^2);
plot([xr; xl],[y; y])
And I suppose you could rotate it if you wanted
r = 1;
t = 30;
y = linspace(-r,r,50);
xr = sqrt(r^2 - y.^2);
xl = -sqrt(r^2 - y.^2);
[th rh] = cart2pol([xr; xl],[y; y]);
[xx yy] = pol2cart(th+t*pi/180,rh);
plot(xx,yy)
  1 件のコメント
ANDREAS KOUNTOURIS
ANDREAS KOUNTOURIS 2022 年 2 月 15 日
Yes, something like this. Thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by