class="resources"
Converts two arrays of polar coordinates represented by the input arrays Magnitude and Phase into two arrays of rectangular coordinates. Details

![]() |
Magnitude is a 1D array of polar coordinates. |
![]() |
Phase is a 1D array of polar coordinates. You must express Phase in radians. |
![]() |
X is a 1D array of rectangular coordinates. |
![]() |
Y is a 1D array of rectangular coordinates. |
![]() |
error returns any error or warning from the VI. You can wire error to the Error Cluster From Error Code VI to convert the error code or warning into an error cluster. |
This VI converts the arrays of polar coordinates into arrays of rectangular coordinates using the following equations.
X = Magnitude*cos(Phase)
Y = Magnitude*sin(Phase)