Complex<T>.ConjugateMultiply 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#
public static Complex<T> ConjugateMultiply(
	Complex<T> z1,
	Complex<T> z2
)

Parameters

z1  Complex<T>
The first complex number.
z2  Complex<T>
The second complex number.

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.

See Also