A polar coordinate plot can be created using the polar function, with the first element theta equating to the angle of the plot and the second element rho equating to the radius of the plot.

theta = 0:0.1:4*pi;
rho = 1.5 * theta - 1.5^2 * sin(theta.^1.5);
polar(theta, rho)