Click or drag to resize
SparseMatrixMultiply Method (Double)
Multiply the matrix by a vector.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double[] Multiply(
	double[] x
)

Parameters

x
Type: SystemDouble
A double column array.

Return Value

Type: Double
A double vector representing the product of the constructed matrix and x, Ax.
Exceptions
ExceptionCondition
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