Complex<T>.Conjugate Multiply Method
Multiplies the Conjugate() of a complex number
and a second complex number.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A complex number that is the product of the Conjugate() of z1 and z2.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static Complex<T> ConjugateMultiply(
Complex<T> z1,
Complex<T> z2
)
Parameters
Return Value
Complex<T>A complex number that is the product of the Conjugate() of z1 and z2.
Remarks
The conjugate of a complex number a + ib is a - ib.
This method does not have an overloaded operator equivalent.