| 1 2 |
|
Parameters
- rho
- Magnitude (modulus) of the complex number.
T is complex<T>'s template type (i.e., its value type). - theta
- Phase angle (angular component) of the complex number.
T is complex<T>'s template type (i.e., its value type).
Return value
The complex cartesian equivalent to the polar format formed by rho and theta.Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Output:
The complex whose magnitude is 2 and phase angle is 0.5 is (1.75517,0.958851) |
See also
| abs | Return absolute value of complex (function template) |
| arg | Return phase angle of complex (function template) |
