RowVectorDivision Operator |
Divides 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 /(
RowVector v,
double alpha
)
Public Shared Operator / (
v As RowVector,
alpha As Double
) As RowVector
public:
static RowVector^ operator /(
RowVector^ v,
double alpha
)
static let inline (/)
v : RowVector *
alpha : float : RowVector
Parameters
- v
- Type: Meta.Numerics.MatricesRowVector
The row vector. - alpha
- Type: SystemDouble
The real, scalar constant.
Return Value
Type:
RowVectorThe result.
See Also