IArrayFunctions<T, TShape, TArray>.ConjugateMultiply Method

Multiplies the conjugate of each element of an array by the corresponding element in another array.

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
void ConjugateMultiply(
	TShape shape,
	TArray first,
	TArray second,
	TArray result
)

Parameters

shape  TShape
The number of elements in the array.
first  TArray
The array that holds the first operands that are conjugated.
second  TArray
The array that holds the second operands.
result  TArray
The array that holds the results.

See Also