This is an example of how to create a polar plot in MATLAB®.
Read about the polar function in the MATLAB® documentation.
Go to MATLAB Plot Gallery
% Create data for the function t = 0:0.01:2*pi; r = abs(sin(2*t).*cos(2*t)); % Create a polar plot using the function polar figure; polar(t, abs(sin(2*t).*cos(2*t))); % Add a title title('abs(sin(2t)*cos(2t))');
