Click or drag to resize

NMathFunctionsProduct(FloatCsrSparseMatrix, FloatCsrSparseMatrix) Method

Matrix inner product of two sparse matrices in compressed row (CSR) format. Result is a sparse matrix in CSR format.

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

Parameters

A  FloatCsrSparseMatrix
A sparse matrix in CSR format.
B  FloatCsrSparseMatrix
A sparse matrix in CSR format.

Return Value

FloatCsrSparseMatrix
The matrix inner product of A and B in CSR format.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of columns in A is not equal to the number of rows in B.
See Also