How to plot a semi-circle?
조회 수: 6 (최근 30일)
이전 댓글 표시
How to plot a semi-circle and if I want just the curve of of the semi-circle and the radius of the circle is 500m?
Thanks
댓글 수: 0
채택된 답변
Wayne King
2012년 2월 6일
theta = 0:.01:pi;
y = 500*exp(1j*theta);
plot(real(y),imag(y));
axis([-750 750 -750 750]);
grid on;
댓글 수: 4
Elisabetta Di Franco
2022년 7월 26일
This is very useful. I tried this but the semicircle is upsidedown and shifted. How can I change the code?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Fit Postprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!