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

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Complex[] Multiply(
	Complex[,] a,
	Complex[] x
)
Visual Basic (Declaration)
Public Shared Function Multiply ( _
	a As Complex(,), _
	x As Complex() _
) As Complex()
Visual C++
public:
static array<Complex>^ Multiply(
	array<Complex,2>^ a, 
	array<Complex>^ x
)

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular matrix.
x
Type: array< Imsl.Math..::.Complex >[]()[]
A Complex vector.

Return Value

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

Exceptions

ExceptionCondition
System..::.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