RowVectorAddition Operator |
Computes the sum of two row 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 row vector. - v2
- Type: Meta.Numerics.MatricesRowVector
The second row vector.
Return Value
Type:
RowVectorThe sum
v1 +
v2.
See Also