Multiply two sparse matrices,
.

Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public static ComplexSparseMatrix Multiply( ComplexSparseMatrix A, ComplexSparseMatrix B ) |
Visual Basic (Declaration) |
---|
Public Shared Function Multiply ( _ A As ComplexSparseMatrix, _ B As ComplexSparseMatrix _ ) As ComplexSparseMatrix |
Visual C++ |
---|
public: static ComplexSparseMatrix^ Multiply( ComplexSparseMatrix^ A, ComplexSparseMatrix^ B ) |
Parameters
- A
- Type: Imsl.Math..::.ComplexSparseMatrix
A ComplexSparseMatrix sparse matrix.
- B
- Type: Imsl.Math..::.ComplexSparseMatrix
A ComplexSparseMatrix sparse matrix.
Return Value
The ComplexSparseMatrix product AB of A and B.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | is thrown when the column number of matrix A is not equal to the row number of matrix B. |