Click or drag to resize

NMathFunctionsConjTransposeProduct(FloatComplexMatrix, FloatComplexMatrix, FloatComplexMatrix) Method

Computes the matrix inner product of the conjugate transpose of a given matrix and a second matrix and places the result in a third matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static void ConjTransposeProduct(
	FloatComplexMatrix A,
	FloatComplexMatrix B,
	FloatComplexMatrix C
)

Parameters

A  FloatComplexMatrix
A matrix.
B  FloatComplexMatrix
A matrix.
C  FloatComplexMatrix
A matrix in which to place the result of the cunjugate transpose product.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A, B and C do not all have compatible dimensions.
Remarks
This function is equivalent to calling NMathFunctions.Product( NMathFunctions.Transpose(A), B, C ).
See Also