Multiply the matrix by a vector.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
Visual Basic (Declaration) |
---|
Public Function Multiply ( _
x As Double() _
) As Double() |
Visual C++ |
---|
public:
array<double>^ Multiply(
array<double>^ x
) |
Return Value
A
double 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.
|
See Also