Adds a constant to a vector in-place.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> AddCore(
T value,
Vector<T> result
)
Protected Overridable Function AddCore (
value As T,
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ AddCore(
T value,
Vector<T>^ result
)
abstract AddCore :
value : 'T *
result : Vector<'T> -> Vector<'T>
override AddCore :
value : 'T *
result : Vector<'T> -> Vector<'T>
Parameters
- value
- Type: T
The constant. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector whose elements are
the sum of the corresponding elements of
this vector and
value.
Reference