Polar To Re/Im Function
- Updated2025-07-30
- 2 minute(s) read
Converts the polar components of a complex number into its rectangular components.

Inputs/Outputs
r
—
r can be a scalar number, an array or cluster of numbers, array of clusters of numbers, and so on.
theta
—
theta can be a scalar number, an array or cluster of numbers, array of clusters of numbers, and so on. theta is in radians.
x
—
x is of the same data structure as r and theta.
y
—
y is of the same data structure as r and theta. |
This function converts the polar components to rectangular components using following equations:
x = r*cos(theta) y = r*sin(theta)
r
—
x
—