ImExp-func
Calculate the exponential value for a complex.
where .
complex ImExp(complex cX)
cX
Return the exponential value for the specified complex.
imExp(1i*pi) = ; // -1+1.2246467991474E-16i complex c1 = 3+4i; complex c2; c2 = imExp(c1); c2 = ; // -13.128783081462-15.200784463068i
ImLn, ImLog10, ImLog2