Divides a vector element-wise by another vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> ElementwiseDivideInto<T>(
Vector<T> left,
Vector<T> right,
Vector<T> result
)
Public Shared Function ElementwiseDivideInto(Of T) (
left As Vector(Of T),
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ ElementwiseDivideInto(
Vector<T>^ left,
Vector<T>^ right,
Vector<T>^ result
)
static member ElementwiseDivideInto :
left : Vector<'T> *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
A vector. - right
- Type: Extreme.MathematicsVectorT
A vector. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
VectorTA vector whose elements are equal to the quotient
of the elements of
left divided
right .
Reference