IMSL C# Numerical Library

SparseMatrix.Multiply Method (SparseMatrix, SparseMatrix)

Multiply two sparse matrices, C \leftarrow AB.

public static SparseMatrix Multiply(
   SparseMatrix A,
   SparseMatrix B
);

Parameters

A
A SparseMatrix sparse matrix.
B
A SparseMatrix sparse matrix.

Return Value

The SparseMatrix product AB of A and B.

Exceptions

Exception Type Condition
ArgumentException is thrown when the number of columns of matrix A is not equal to the number of rows of matrix B.

See Also

SparseMatrix Class | Imsl.Math Namespace | SparseMatrix.Multiply Overload List