polar
Plot in polar coordinates.
Syntax
Section titled “Syntax”h = polar(theta, r, ...)Description
Section titled “Description”Plots r vs angle theta (in radians) on a polar grid. Equivalent to converting to Cartesian and using plot, but with polar axes.
Examples
Section titled “Examples”theta = linspace(0, 2*pi, 100);polar(theta, 1 + cos(3*theta)) % rose curve