ImPower-func
Calculate the given complex to the power of the specified value.
complex ImPower(complex cX, double dn)
cX
dn
Return the power of the specified complex.
imPower(3+4i, 0.58) = ; // 2.1842664533957+1.3028830443443i complex c1 = 1+1i; complex c2; c2 = imPower(c1, -2); c2 = ; // 3.0616169978684E-17-0.5i
ImSqrt