IMSL C# Numerical Library

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

Return the product of the row matrix x and the rectangular matrix a.

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

Parameters

x
A double row matrix.
a
A double rectangular matrix.

Return Value

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

Exceptions

Exception Type Condition
ArgumentException is thrown when the number of elements in the input row matrix is not equal to the number of rows of the matrix

See Also

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