Subtracts one vector from another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> SubtractAsLeftCore(
Vector<T> right,
Vector<T> result
)
Protected Overridable Function SubtractAsLeftCore (
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ SubtractAsLeftCore(
Vector<T>^ right,
Vector<T>^ result
)
abstract SubtractAsLeftCore :
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override SubtractAsLeftCore :
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- right
- Type: Extreme.MathematicsVectorT
The right 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
right.
Reference