Multiply row array x and sparse matrix A, x^TA .

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Complex[] Multiply(
	Complex[] x,
	ComplexSparseMatrix A
)
Visual Basic (Declaration)
Public Shared Function Multiply ( _
	x As Complex(), _
	A As ComplexSparseMatrix _
) As Complex()
Visual C++
public:
static array<Complex>^ Multiply(
	array<Complex>^ x, 
	ComplexSparseMatrix^ A
)

Parameters

x
Type: array< Imsl.Math..::.Complex >[]()[]
A Complex row array.
A
Type: Imsl.Math..::.ComplexSparseMatrix
A ComplexSparseMatrix matrix.

Return Value

A Complex vector representing the product of the arguments,  x^T A .

Exceptions

ExceptionCondition
System..::.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