Imaginary<T>.ConjugateMultiply Method

Multiplies the Conjugate() of an imaginary number and a second imaginary number.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
public static T ConjugateMultiply(
	Imaginary<T> z1,
	Imaginary<T> z2
)

Parameters

z1  Imaginary<T>
The first imaginary number.
z2  Imaginary<T>
The second imaginary number.

Return Value

T
A real number that is the product of the Conjugate() of z1 and z2.

Remarks

The conjugate of an imaginary number a + ib is a - ib.

This method does not have an overloaded operator equivalent.

See Also