Represents a filter that can be used to select observations in a Variable or VariableCollection.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Class Filter |
| C# |
|---|
public class Filter |
| C++ |
|---|
public ref class Filter |
Methods
| Icon | Type | Description |
|---|---|---|
| ApplySort(Filter) |
Returns a filter that applies the specified sort filter to the current filter.
| |
| BitwiseAnd(Filter, Filter) |
Returns a filter representing the intersection of two filters.
| |
| BitwiseOr(Filter, Filter) |
Returns a filter that represents the union of two filters.
| |
| Complement(Filter) |
Returns a Filter that is the complement of the specified filter.
| |
| Equals(Object) | ||
| Finalize() | ||
| GetHashCode() | Serves as a hash function for a particular type. | |
| GetReverse() |
Returns a filter that lists the observations of the current filter in reverse order.
| |
| GetType() | Gets the Type of the current instance. | |
| Intersection(Filter, Filter) |
Returns a filter representing the intersection of two filters.
| |
| MemberwiseClone() | Creates a shallow copy of the current Object. | |
| OnesComplement(Filter) |
Returns a Filter that is the complement of the specified filter.
| |
| Reverse(Int32) |
Returns a filter that reverses the observations.
| |
| ToString() | ||
| Union(Filter, Filter) |
Returns a filter that represents the union of two filters.
|
Constructors
| Icon | Type | Description |
|---|---|---|
| FilterNew(Int32, Int32[]()) |
Constructs a new Filter from an array of indexes.
| |
| FilterNew(Int32, Int32, Int32) |
Constructs a new Filter from a range of indexes.
|
Properties
| Icon | Type | Description |
|---|---|---|
| EndIndex |
Gets the index of the observation past the last visible observation.
| |
| FilteredLength |
Gets the length of the filtered data.
| |
| Item(Int32) |
Gets the unfiltered index of the observation at the specified index.
| |
| Length |
Gets the length of the unfiltered data.
| |
| StartIndex |
Gets the index of the first visible observation.
|