Click or drag to resize
MatrixMultiply Method (Double, Double)
Multiply the rectangular matrix a and the column matrix x.

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

Parameters

a
Type: SystemDouble
A double rectangular matrix.
x
Type: SystemDouble
A double column matrix.

Return Value

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