ComplexMatrixMultiply Method (Complex, Complex) |
Multiply the rectangular array a and the column vector x, both
Complex.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex[] Multiply(
Complex[,] a,
Complex[] x
)
Public Shared Function Multiply (
a As Complex(,),
x As Complex()
) As Complex()
public:
static array<Complex>^ Multiply(
array<Complex,2>^ a,
array<Complex>^ x
)
static member Multiply :
a : Complex[,] *
x : Complex[] -> Complex[]
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 Exception | 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