Click or drag to resize
ComplexMatrixMultiply Method (Complex, Complex)
Multiply the rectangular array a and the column vector x, both Complex.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static Complex[] Multiply(
	Complex[,] a,
	Complex[] x
)

Parameters

a
Type: Imsl.MathComplex
A Complex rectangular matrix.
x
Type: Imsl.MathComplex
A Complex vector.

Return Value

Type: Complex
A Complex vector containing the product of the arguments, a * x.
Exceptions
ExceptionCondition
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