When I plot a polar.. How can I put the center of the 'marker' inside the 'circle' of the polar (not in the patch edge)?
Mostra commenti meno recenti
c=20;
b=zeros(1,c)
a=zeros(1,c)
for i=1:c
b(i)=(2*pi)*((i-1)/c)
end
for j=1:c
a(j)=1
end
length(b)
length(a)
p=polar(b,a,'ob')
Risposte (1)
Joseph Cheng
il 6 Lug 2015
0 voti
there is no direct way to set axis limits but you can do what they suggest http://www.mathworks.com/matlabcentral/answers/8948-polar-plots-axis-limits and plot an invisible point tricking matlab to increase the 'circle'
Categorie
Scopri di più su Polar Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!