How to polarplot theta=3*pi/4 ?
조회 수: 4 (최근 30일)
이전 댓글 표시
theta=3*pi/4
댓글 수: 2
답변 (3개)
Star Strider
2016년 10월 31일
편집: Star Strider
2016년 10월 31일
theta = 3*pi/4;
figure(1)
plot(theta, 'pg')
EDIT — Using the polar plot:
theta = 3*pi/4;
figure(1)
polar(theta*[1 1], [0 1], '-pg')
댓글 수: 0
Thorsten
2016년 11월 1일
theta = 3/4*pi;
plot([0 cos(theta)], [0 sin(theta)])
axis equal
axis([-1 1 -1 1])
댓글 수: 0
Steven Lord
2016년 11월 1일
r = [-5 5];
theta = repmat(3*pi/4, size(r));
polarplot(theta, r)
Adjust the values in r to suit your desired polar axes radius.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Polar Plots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!