Member of the plots class.
polar(x, y)
polar(x, y, attributes)
Generates a polar coordinates plot.
| Name | Description | ||||||||||||||||||||||||||||||||||
| x | Specifies a vector of the angle (measured in radians) between the positive x-axis and a straight line from the plot point to the center of the polar plot. | ||||||||||||||||||||||||||||||||||
| y | Specifies a vector of the distance from the plot point to the center of the polar plot. | ||||||||||||||||||||||||||||||||||
| attributes | Specifies valid plot attributes. Order the plot attributes by color, point style, and line style. For example, 'bo-' specifies that the plot is blue, marks points with circles, and uses solid lines. attributes is a string that accepts a combination of the following values.
|
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
x = 0:0.2:5*pi;
polar(x, x, 'rx--')