Subtracts one vector from another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> SubtractAsRightCore(
Vector<T> left,
Vector<T> result
)
Protected Overridable Function SubtractAsRightCore (
left As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ SubtractAsRightCore(
Vector<T>^ left,
Vector<T>^ result
)
abstract SubtractAsRightCore :
left : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override SubtractAsRightCore :
left : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The left operand of the subtraction. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector whose elements are
the difference between the corresponding elements of
this vector and
left.
Reference