IMSL C# Numerical Library

Matrix.Multiply Method

Returns the product of two matrices.

Overload List

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

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

Multiply the rectangular matrix a and the column matrix x.

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

Multiply two rectangular matrices, a * b.

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

Multiply two rectangular arrays, a * b, using multiple threads.

public static double[,] Multiply(double[,],double[,],int);

See Also

Matrix Class | Imsl.Math Namespace