ImCos-func
Calculate the cosine value for a complex.
or
where C is a complex, and .
complex ImCos(complex cX)
cX
Return the cosine value for the specified complex.
imCos(3+4i) = ; // -27.034945603074-3.8511533348118i complex c1 = 1+1i; complex c2; c2 = imCos(c1); c2 = ; // 0.83373002513115-0.98889770576287i
ImSin