Enum VectorFindValueType
- Namespace
- TimeSeriesAnalysis
- Assembly
- TimeSeriesAnalysis.dll
Input to Vec.FindValues which specifies the criteria of the search
public enum VectorFindValueType
Fields
BiggerOrEqual = 3">=" : Find values which are bigger than or equal
BiggerThan = 1">" : Find values which are bigger than
DifferentFromPrevious = 10Find values that are different from the previous index value Note that in this case "Find" algorithm will disregard the supplied "value"
Equal = 5"==": Find values which are equal
Inf = 11Find values that are infinite (Double.PositiveInfinity or Double.NegativeInfinity)
NaN = 6Find values that are Double.NaN
NotEqual = 8Find values that are NOT equal to a given value
NotInf = 12Find values that are NOT infinite (Double.PositiveInfinity or Double.NegativeInfinity)
NotNaN = 7Find values that are NOT Double.NaN
SameAsPrevious = 9Find values that are equal to the previous index value Note that in this case "Find" algorithm will disregard the supplied "value"
SmallerOrEqual = 4Find values which are smaller than or equal
SmallerThan = 2Find values which are smaller than