RowVectorMultiply Operator (RowVector, AnyRectangularMatrix) |
Multiplies any real, rectangular matrix by a row vector.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static RowVector operator *(
RowVector v,
AnyRectangularMatrix A
)
Public Shared Operator * (
v As RowVector,
A As AnyRectangularMatrix
) As RowVector
public:
static RowVector^ operator *(
RowVector^ v,
AnyRectangularMatrix^ A
)
static let inline (*)
v : RowVector *
A : AnyRectangularMatrix : RowVector
Parameters
- v
- Type: Meta.Numerics.MatricesRowVector
The row vector. - A
- Type: Meta.Numerics.MatricesAnyRectangularMatrix
The matrix.
Return Value
Type:
RowVectorThe product row vector.
See Also