ImReal-func
This function is used to get the real part of the specified complex.
double ImReal(complex cX)
cX
Return the real part of the specified complex.
imreal(1+2i) = ; // 1 complex c = 3+4i; imreal(c) = ; // 3
Imaginary, Real2Complex