IMSL C# Numerical Library

Matrix.Multiply Method (Double[,], Double[])

Multiply the rectangular matrix a and the column matrix x.

public static double[] Multiply(
   double[,] a,
   double[] x
);

Parameters

a
A double rectangular matrix.
x
A double column matrix.

Return Value

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

Exceptions

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

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