RowVectorSubtraction Operator |
Computes the difference of two column vectors.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static RowVector operator -(
RowVector v1,
RowVector v2
)
Public Shared Operator - (
v1 As RowVector,
v2 As RowVector
) As RowVector
public:
static RowVector^ operator -(
RowVector^ v1,
RowVector^ v2
)
static let inline (-)
v1 : RowVector *
v2 : RowVector : RowVector
Parameters
- v1
- Type: Meta.Numerics.MatricesRowVector
The first column vector. - v2
- Type: Meta.Numerics.MatricesRowVector
The second column vector.
Return Value
Type:
RowVectorThe difference
v1 -
v2.
See Also