Linear equation of circle
조회 수: 2 (최근 30일)
이전 댓글 표시
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
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
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)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!