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

1 次查看(过去 30 天)
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