ezpolar.RdEasy function plot w/o the need to define x, y coordinates.
ezpolar(fun, interv = c(0, 2*pi))Calculates the x, y coordinates of points to be plotted and
calls the polar function.
Plots the function graph and invisibly returns NULL.
Mimick the Matlab function of the same name.
if (FALSE) { # \dontrun{
fun <- function(x) 1 + cos(x)
ezpolar(fun)
} # }