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