Returns the principal Complex rth root of unity.
RTHROOT(r)
r |
- |
A real. |
A complex scalar, e2πi/r
rthroot(2.0)
returns mag = 1; angle = 3.14159, 180.
rthroot(6.9)
returns mag = 1; angle = 0.91061, 52.17391.
Returns Complex number in polar form. Use cartesian(rthroot(r)) to see the root in Cartesian form. Use rthroot(r)^n to see the other rth roots of unity.
See POLYROOT to find the roots of a polynomial.