Divides a scalar by each element of a vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> ElementwiseDivideInto<T>(
T left,
Vector<T> right,
Vector<T> result
)
Public Shared Function ElementwiseDivideInto(Of T) (
left As T,
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ ElementwiseDivideInto(
T left,
Vector<T>^ right,
Vector<T>^ result
)
static member ElementwiseDivideInto :
left : 'T *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- left
- Type: T
A scalar. - 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 new vector whose elements are equal to the quotient
of the elements of
left divided
right .
Reference