Man Scilab

polarplot
Scilab Function

polarplot - Plot polar coordinates

Calling Sequence

polarplot(theta,rho,[style,strf,leg,rect])
polarplot(theta,rho,<opt_args>)

Parameters

Description

polarplot creates a polar coordinate plot of the angle theta versus the radius rho. theta is the angle from the x-axis to the radius vector specified in radians; rho is the length of the radius vector specified in dataspace units.

Examples


t= 0:.01:2*%pi;
clf();polarplot(sin(7*t),cos(8*t))

clf();polarplot([sin(7*t') sin(6*t')],[cos(8*t') cos(8*t')],[1,2])

 
  

Back