Complex<T>.Conjugate Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Conjugate() Returns the conjugate of this complex number.
Conjugate(Complex<T>) Returns the conjugate of a complex number.

Complex<T>.Conjugate

Returns the conjugate of this complex number.
C#
public Complex<T> Conjugate()

Return Value

Complex<T>
A complex number with the same real part and negated imaginary part.

Remarks

The conjugate of a complex number a + ib is a - ib.

Complex<T>.Conjugate(Complex<T>)

Returns the conjugate of a complex number.
C#
public static Complex<T> Conjugate(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

Complex<T>
The conjugate to z.

Remarks

The conjugate of a complex number a + ib is a - ib.

See Also