Multiply the matrix by a vector.

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

Syntax

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

Parameters

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

Return Value

A double vector representing the product of the constructed matrix and x, Ax.

Exceptions

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

See Also