Click or drag to resize
ComplexMatrix.Multiply Method (Complex[],Complex[,])
Returns the product of the row vector x and the rectangular array a, both Complex.

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

Parameters

x
Type:Imsl.Math.Complex[]
A Complex row vector.
a
Type:Imsl.Math.Complex[,]
A Complex rectangular matrix.

Return Value

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