Multiply the matrix by a vector.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public Complex[] Multiply( Complex[] x ) |
Visual Basic (Declaration) |
---|
Public Function Multiply ( _ x As Complex() _ ) As Complex() |
Visual C++ |
---|
public: array<Complex>^ Multiply( array<Complex>^ x ) |
Parameters
- x
- Type: array<
Imsl.Math..::.Complex
>[]()[]
A Complex column array.
Return Value
A Complex vector representing the product of the constructed matrix and x,
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | is thrown when the number of columns of the matrix represented by this object is not equal to the number of elements in the input column vector. |