Click or drag to resize
Matrix.Multiply Method (Double[],Double[,])
Return the product of the row matrix x and the rectangular matrix a.

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

Parameters

x
Type:System.Double[]
A double row matrix.
a
Type:System.Double[,]
A double rectangular matrix.

Return Value

Type:Double[]
A double vector representing the product of the arguments, x*a.
Exceptions
ExceptionCondition
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