Multiplies the
Conjugate of a complex number
and a second complex number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> ConjugateMultiply(
Complex<T> z1,
Complex<T> z2
)
Public Shared Function ConjugateMultiply (
z1 As Complex(Of T),
z2 As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> ConjugateMultiply(
Complex<T> z1,
Complex<T> z2
)
static member ConjugateMultiply :
z1 : Complex<'T> *
z2 : Complex<'T> -> Complex<'T>
Parameters
- z1
- Type: Extreme.MathematicsComplexT
The first complex number. - z2
- Type: Extreme.MathematicsComplexT
The second complex number.
Return Value
Type:
ComplexTA complex number that is the product
of the
Conjugate of
z1
and
z2.
The conjugate of a complex number
a + ib is a - ib.
This method does not have an overloaded operator equivalent.
Reference