Converts the polar components of a complex number into its rectangular components.


icon

Inputs/Outputs

  • cdbl.png r

    r can be a scalar number, an array or cluster of numbers, array of clusters of numbers, and so on.

  • cdbl.png 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.

  • idbl.png x

    x is of the same data structure as r and theta.

  • idbl.png 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)