ImSqrt-func
Calculate the square root of a complex.
complex ImSqrt(complex cX)
cX
Return the square root of the specified complex.
imSqrt(3+4i) = ; // 2+1i complex c1 = -1; complex c2; c2 = imSqrt(c1); c2 = ; // 1i
ImPower