Returns the product of two Complex Objects.
Returns the product of the row vector x and the rectangular array a, both Complex.
public static Complex[] Multiply(Complex[],Complex[,]);
Multiply the rectangular array a and the column vector x, both Complex.
public static Complex[] Multiply(Complex[,],Complex[]);
Multiply two Complex rectangular arrays, a * b.
public static Complex[,] Multiply(Complex[,],Complex[,]);
Multiply two Complex rectangular arrays, a * b, using multiple threads.
public static Complex[,] Multiply(Complex[,],Complex[,],int);
ComplexMatrix Class | Imsl.Math Namespace