< MATLAB Programming
Introduction
The polar command accepts polar coordinates, plots them in a Cartesian plane, and draws the polar grid on the plane.
Usage
Here's how a plot can be created.
>>t = 0:.01:2*pi;
>>polar(t,sin(2*t).*cos(2*t),'--r')
>> grid on % Turn on the grid
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.