ComplexSparseMatrixMultiply Method (ComplexSparseMatrix, ComplexSparseMatrix) |
Multiply two sparse matrices,
.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static ComplexSparseMatrix Multiply(
ComplexSparseMatrix A,
ComplexSparseMatrix B
)
Public Shared Function Multiply (
A As ComplexSparseMatrix,
B As ComplexSparseMatrix
) As ComplexSparseMatrix
public:
static ComplexSparseMatrix^ Multiply(
ComplexSparseMatrix^ A,
ComplexSparseMatrix^ B
)
static member Multiply :
A : ComplexSparseMatrix *
B : ComplexSparseMatrix -> ComplexSparseMatrix
Parameters
- A
- Type: Imsl.MathComplexSparseMatrix
A ComplexSparseMatrix sparse matrix.
- B
- Type: Imsl.MathComplexSparseMatrix
A ComplexSparseMatrix sparse matrix.
Return Value
Type:
ComplexSparseMatrix
The
ComplexSparseMatrix product
AB of
A and
B.
Exceptions Exception | Condition |
---|
ArgumentException | is thrown when the
column number of matrix A is not equal to the row number of
matrix B.
|
See Also