Divides two vectors element-wise.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> ElementwiseDivideAsLeftCore(
Vector<T> right,
Vector<T> result
)
Protected Overridable Function ElementwiseDivideAsLeftCore (
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ ElementwiseDivideAsLeftCore(
Vector<T>^ right,
Vector<T>^ result
)
abstract ElementwiseDivideAsLeftCore :
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override ElementwiseDivideAsLeftCore :
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- right
- Type: Extreme.MathematicsVectorT
The right operand in the division. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector whose elements are
the quotient of the corresponding elements of
this vector and
right.
Reference