Complex<T>.ConjugateMultiply 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.0
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