IMSL C# Numerical Library

ComplexMatrix.Multiply Method

Returns the product of two Complex Objects.

Overload List

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);

See Also

ComplexMatrix Class | Imsl.Math Namespace