Click or drag to resize
ComplexSparseMatrixMultiply Method (Complex, ComplexSparseMatrix)
Multiply row array x and sparse matrix A, x^TA .

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

Parameters

x
Type: Imsl.MathComplex
A Complex row array.
A
Type: Imsl.MathComplexSparseMatrix
A ComplexSparseMatrix matrix.

Return Value

Type: Complex
A Complex vector representing the product of the arguments,  x^T A .
Exceptions
ExceptionCondition
ArgumentException is thrown when the number of elements in the input vector is not equal to the number of rows of the matrix.
See Also