Imaginary<T>.Conjugate Method

Definition

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

Overload List

Conjugate() Returns the conjugate of this imaginary number.
Conjugate(Imaginary<T>) Returns the conjugate of an imaginary number.

Conjugate

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

Return Value

Imaginary<T>
An imaginary number with negated imaginary part.

Remarks

The conjugate of an imaginary number a + ib is a - ib.

Conjugate(Imaginary<T>)

Returns the conjugate of an imaginary number.
C#
public static Imaginary<T> Conjugate(
	Imaginary<T> z
)

Parameters

z  Imaginary<T>
An imaginary number.

Return Value

Imaginary<T>
The conjugate to z.

Remarks

The conjugate of an imaginary number a + ib is a - ib.

See Also