Click or drag to resize

NMathFunctionsProduct(FloatComplexMatrix, FloatComplexMatrix) 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 FloatComplexMatrix Product(
	FloatComplexMatrix A,
	FloatComplexMatrix B
)

Parameters

A  FloatComplexMatrix
A matrix.
B  FloatComplexMatrix
A matrix.

Return Value

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