Click or drag to resize
SparseMatrixMultiply Method (SparseMatrix, SparseMatrix)
Multiply two sparse matrices,  C \leftarrow AB.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static SparseMatrix Multiply(
	SparseMatrix A,
	SparseMatrix B
)

Parameters

A
Type: Imsl.MathSparseMatrix
A SparseMatrix sparse matrix.
B
Type: Imsl.MathSparseMatrix
A SparseMatrix sparse matrix.

Return Value

Type: SparseMatrix
The SparseMatrix product AB of A and B.
Exceptions
ExceptionCondition
ArgumentException is thrown when the number of columns of matrix A is not equal to the number of rows of matrix B.
See Also