ImConjugate

Description

Get the conjugate of a complex.

Syntax

complex ImConjugate(complex cX)

Parameters

cX

The complex number.

Return

Return the conjugate of a complex.

Example

imconjugate(3+4i) = ;  // 3-4i

complex c1 = 1+1i;
complex c2;
c2 = imconjugate(c1);
c2 = ;  // 1-1i