IMSL C# Numerical Library

SparseMatrix.Multiply Method (Double[])

Multiply the matrix by a vector.

public double[] Multiply(
   double[] x
);

Parameters

x
A double column array.

Return Value

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

Exceptions

Exception Type Condition
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

SparseMatrix Class | Imsl.Math Namespace | SparseMatrix.Multiply Overload List