Multiply two sparse matrices,  C \leftarrow AB.

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

ExceptionCondition
System..::.ArgumentException is thrown when the column number of matrix A is not equal to the row number of matrix B.

See Also