Click or drag to resize
Matrix.Multiply Method (Double[,],Double[,])
Multiply two rectangular matrices, a * b.

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

Parameters

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

Return Value

Type:Double[,]
The double matrix product of a * b.
Exceptions
ExceptionCondition
ArgumentException is thrown when the number of columns in a is not equal to the number of rows in b
See Also