Adds two vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> AddScaledAsLeftCore(
T factor,
Vector<T> right,
Vector<T> result
)
Protected Overridable Function AddScaledAsLeftCore (
factor As T,
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ AddScaledAsLeftCore(
T factor,
Vector<T>^ right,
Vector<T>^ result
)
abstract AddScaledAsLeftCore :
factor : 'T *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override AddScaledAsLeftCore :
factor : 'T *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- factor
- Type: T
The scale factor for right. - right
- Type: Extreme.MathematicsVectorT
The right operand. - 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
factor times
right.
Reference