SparseMatrixMultiply Method (SparseMatrix, SparseMatrix) |
Multiply two sparse matrices,
.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static SparseMatrix Multiply(
SparseMatrix A,
SparseMatrix B
)
Public Shared Function Multiply (
A As SparseMatrix,
B As SparseMatrix
) As SparseMatrix
public:
static SparseMatrix^ Multiply(
SparseMatrix^ A,
SparseMatrix^ B
)
static member Multiply :
A : SparseMatrix *
B : SparseMatrix -> SparseMatrix
Parameters
- A
- Type: Imsl.MathSparseMatrix
A SparseMatrix sparse matrix.
- B
- Type: Imsl.MathSparseMatrix
A SparseMatrix sparse matrix.
Return Value
Type:
SparseMatrix
The
SparseMatrix product
of
A and
B.
Exceptions Exception | 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