Polar Axis with Specific Jumps

Hi,
I want to plot a polar axes when there is specific jumps on the R direction and other jumps on the theta direction.
In R is 1/20 from 0 to 1, and theta is 2pi/32 from 0 to 2pi.
How can I do it?

 Accepted Answer

ax = polaraxes( ...
'RLim',[0 1], ...
'RTick',linspace(0,1,21), ...
'ThetaAxisUnits','radians', ...
'ThetaLim',[0 2*pi], ...
'ThetaTick',linspace(0,2*pi,33));

More Answers (0)

Categories

Products

Release

R2021b

Asked:

on 18 Mar 2024

Answered:

on 18 Mar 2024

Community Treasure Hunt

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

Start Hunting!