Click or drag to resize

NMathFunctionsProduct(DoubleComplexMatrix, DoubleComplexMatrix) Method

Computes the matrix inner product of two matrices and returns the result.

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

Parameters

A  DoubleComplexMatrix
A matrix.
B  DoubleComplexMatrix
A matrix.

Return Value

DoubleComplexMatrix
A new matrix containing the product of A and B.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have compatible sizes.
See Also