Function Reference
— Function File: ezpolar (f)
— Function File: ezpolar (..., dom)
— Function File: ezpolar (..., n)
— Function File: ezpolar (h, ...)
— Function File: h = ezpolar (...)

Plots in polar plot defined by a function. The function f is either a string, inline function or function handle with one arguments defining the function. By default the plot is over the domain 0 < x < 2*pi with 60 points.

If dom is a two element vector, it represents the minimum and maximum value of both t. n is a scalar defining the number of points to use.

The optional return value h provides a list of handles to the the parts of the vector field (body, arrow and marker).

          ezpolar (@(t) 1 + sin (t));

Demonstration 1

The following code

 ezpolar (@(t) 1 + sin (t));

Produces the following figure