Click or drag to resize

NMathFunctionsProduct(DoubleComplexMatrix, DoubleComplexMatrix, DoubleComplexMatrix) Method

Computes the matrix inner product of two matrices, placing the result in the third.

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

Parameters

A  DoubleComplexMatrix
A matrix.
B  DoubleComplexMatrix
A matrix.
C  DoubleComplexMatrix
The result of the inner product of A with B is placed in C. C must have dimensions A.Rows by B.Cols.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if A, B, and C are not of compatible dimensions.
See Also