Complex<T>.Conjugate Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

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

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.

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