DenseVector<T>.GreaterThanCore Method

Definition

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

Overload List

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

DenseVector<T>.GreaterThanCore(T, Vector<Boolean>)

Checks if the elements of one vector are greater than a constant.
C#
protected override Vector<bool> GreaterThanCore(
	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