DenseVector<T, TStorage>.GreaterThanCore Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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.

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