Vector<T>.LessThanCore Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

LessThanCore(T, Vector<Boolean>) Checks if the elements of one vector are less than a constant.
LessThanCore(Vector<T>, Vector<Boolean>) Checks if the elements of one vector are greater than the corresponding elements of another vector.

Vector<T>.LessThanCore(T, Vector<Boolean>)

Checks if the elements of one vector are less than a constant.
C#
protected virtual Vector<bool> LessThanCore(
	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 less than right, and false otherwise.

Vector<T>.LessThanCore(Vector<T>, Vector<Boolean>)

Checks if the elements of one vector are greater than the corresponding elements of another vector.
C#
protected virtual Vector<bool> LessThanCore(
	Vector<T> right,
	Vector<bool> result
)

Parameters

right  Vector<T>
The second vector.
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 the corresponding element in right, and false otherwise.

Exceptions

ArgumentNullException

right is null

DimensionMismatchException This vector and right do not have the same length.

See Also