Vector<T>.GreaterThanOrEqualToCore(T, Vector<Boolean>) Method

Checks if the elements of one vector are greater than or equal to a constant.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Vector<bool> GreaterThanOrEqualToCore(
	T right,
	Vector<bool> result
)

Parameters

right  T
A constant.
result  Vector<Boolean>
The vector that is to hold the result. May be null.

Return Value

Vector<Boolean>
A boolean vector whose elements are true if the corresponding element in this vector is greater than right, and false otherwise.

See Also