IMSL C# Numerical Library

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

Multiply the rectangular array a and the column vector x, both Complex.

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

Parameters

a
A Complex rectangular matrix.
x
A Complex vector.

Return Value

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

Exceptions

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

See Also

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