MATLAB: How to plot a circle of some radius on a polar plot

circle

eg. i want a small circle with origin as center of some radius…ON the POLAR plot

Best Answer

th = linspace(0,2*pi,50);
r = 10;
polar(th,r+zeros(size(th)))