Returns the product of two matrices.
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);
Matrix Class | Imsl.Math Namespace