Complex<T>.Conjugate Multiply Method
Multiplies the Conjugate() of a complex number
and a second complex number.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A complex number that is the product of the Conjugate() of z1 and z2.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.