Adds a vector and a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> operator +(
T value,
Vector<T> vector
)
Public Shared Operator + (
value As T,
vector As Vector(Of T)
) As Vector(Of T)
public:
static Vector<T>^ operator +(
T value,
Vector<T>^ vector
)
static let inline (+)
value : 'T *
vector : Vector<'T> : Vector<'T>
Parameters
- value
- Type: T
The constant. - vector
- Type: Extreme.MathematicsVectorT
A vector.
Return Value
Type:
VectorTA vector whose elements are
the sum of the corresponding elements of
vector and
value.
Reference