Multiply sparse matrix A and column array x, A x.

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

Syntax

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

Parameters

A
Type: Imsl.Math..::.SparseMatrix
A SparseMatrix matrix.
x
Type: array< System..::.Double >[]()[]
A double column array.

Return Value

A double vector representing the product of the arguments, A x.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown when the number of columns in the input matrix is not equal to the number of elements in the input column vector.

See Also