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.0.0

Syntax

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

Parameters

x
Type: array< Imsl.Math..::.Complex >[]()[]
A Complex row vector.
a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex rectangular matrix.
processors
Type: System..::.Int32
An int which specifies the number of processors to use. If processors is less than 1, then processors = 1 is used.

Return Value

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

Exceptions

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