Table of Contents

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 = 10

Find 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 = 11

Find values that are infinite (Double.PositiveInfinity or Double.NegativeInfinity)

NaN = 6

Find values that are Double.NaN

NotEqual = 8

Find values that are NOT equal to a given value

NotInf = 12

Find values that are NOT infinite (Double.PositiveInfinity or Double.NegativeInfinity)

NotNaN = 7

Find values that are NOT Double.NaN

SameAsPrevious = 9

Find values that are equal to the previous index value Note that in this case "Find" algorithm will disregard the supplied "value"

SmallerOrEqual = 4

Find values which are smaller than or equal

SmallerThan = 2

Find values which are smaller than