Click or drag to resize
ComplexSparseMatrixMultiply Method (ComplexSparseMatrix, ComplexSparseMatrix)
Multiply two sparse matrices,  C \leftarrow AB.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static ComplexSparseMatrix Multiply(
	ComplexSparseMatrix A,
	ComplexSparseMatrix B
)

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
ExceptionCondition
ArgumentException is thrown when the column number of matrix A is not equal to the row number of matrix B.
See Also