RowVectorMultiply Operator (Double, RowVector) |
Multiplies a row vector by a real, scalar constant.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static RowVector operator *(
double alpha,
RowVector v
)
Public Shared Operator * (
alpha As Double,
v As RowVector
) As RowVector
public:
static RowVector^ operator *(
double alpha,
RowVector^ v
)
static let inline (*)
alpha : float *
v : RowVector : RowVector
Parameters
- alpha
- Type: SystemDouble
The real, scalar constant. - v
- Type: Meta.Numerics.MatricesRowVector
The row vector.
Return Value
Type:
RowVectorThe product.
See Also