필터 지우기
필터 지우기

Can anyone help me in my problem ? please check the figure i have attached...

조회 수: 1 (최근 30일)
L K
L K 2016년 11월 18일
댓글: L K 2016년 11월 18일
i have plotted the points on polar graph, but now i want to get a straight perfect line on the 30 degree(right now it is like a curve)
i want all the points to lie on that 30 degree line,
following is the code: theta = 0:0.1:0.5; %rho = sin(2*theta).*cos(2*theta); %rho=zeros(size(theta)); rho=0:0.1:0.5; figure polar(theta,rho,'-o')
please tell me the changes to be done to get the line

채택된 답변

KSSV
KSSV 2016년 11월 18일
theta = 0:0.1:0.5; %
rho=0:0.1:0.5;
theta = 30*pi/180*ones(size(rho)) ;
figure
polar(theta,rho,'-o')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by