IMSL C# Numerical Library

ComplexSparseMatrix.Multiply Method (ComplexSparseMatrix, ComplexSparseMatrix)

Multiply two sparse matrices, C \leftarrow AB.

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

Parameters

A
A ComplexSparseMatrix sparse matrix.
B
A ComplexSparseMatrix sparse matrix.

Return Value

The ComplexSparseMatrix product AB of A and B.

Exceptions

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

See Also

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