Multiplies a vector by a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> MultiplyCore(
T value,
Vector<T> result
)
Protected Overridable Function MultiplyCore (
value As T,
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ MultiplyCore(
T value,
Vector<T>^ result
)
abstract MultiplyCore :
value : 'T *
result : Vector<'T> -> Vector<'T>
override MultiplyCore :
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