Checks if the elements of one vector are less than or equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<bool> LessThanOrEqualToInto<T>(
Vector<T> left,
T right,
Vector<bool> result
)
Public Shared Function LessThanOrEqualToInto(Of T) (
left As Vector(Of T),
right As T,
result As Vector(Of Boolean)
) As Vector(Of Boolean)
public:
generic<typename T>
static Vector<bool>^ LessThanOrEqualToInto(
Vector<T>^ left,
T right,
Vector<bool>^ result
)
static member LessThanOrEqualToInto :
left : Vector<'T> *
right : 'T *
result : Vector<bool> -> Vector<bool>
Parameters
- left
- Type: Extreme.MathematicsVectorT
A vector. - right
- Type: T
A constant. - result
- Type: Extreme.MathematicsVectorBoolean
The vector that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if the corresponding element in
left
is less than or equal to
right, and
otherwise.
Reference