plot the following equation on a polar plot: r =2sin^3(4theta) cos(2theta) in matlab

main.m
theta = 0:0.01:2*pi;
r = 2*sin(4*theta).^3 .* cos(2*theta);
polarplot(theta, r)
80 chars
4 lines

related categories

gistlibby LogSnag