Complex<T>.Conjugate Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Conjugate() | Returns the conjugate of this complex number. |
Conjugate( | Returns the conjugate of a complex number. |
Conjugate
Returns the conjugate of this complex number.
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.
public static Complex<T> Conjugate(
Complex<T> z
)
Parameters
Return Value
Complex<T>The conjugate to z.
Remarks
The conjugate of a complex number a + ib is a - ib.