IMSL C# Numerical Library

ComplexMatrix.Multiply Method (Complex[], Complex[,])

Returns the product of the row vector x and the rectangular array a, both Complex.

public static Complex[] Multiply(
   Complex[] x,
   Complex[,] a
);

Parameters

x
A Complex row vector.
a
A Complex rectangular matrix.

Return Value

A Complex vector containing the product of the arguments, x * a.

Exceptions

Exception Type Condition
ArgumentException is thrown when the number of elements in the input vector is not equal to the number of rows of the matrix.

See Also

ComplexMatrix Class | Imsl.Math Namespace | ComplexMatrix.Multiply Overload List