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