Moving |
public class MovingStatistics
The MovingStatistics type exposes the following members.
Name | Description | |
---|---|---|
MovingStatistics(Int32) | Initializes a new instance of the MovingStatistics class | |
MovingStatistics(Int32, IEnumerableDouble) | Initializes a new instance of the MovingStatistics class |
Name | Description | |
---|---|---|
Count | Gets the total number of samples. | |
Maximum | Returns the maximum value in the sample data. Returns NaN if data is empty or if any entry is NaN. | |
Mean | Evaluates the sample mean, an estimate of the population mean. Returns NaN if data is empty or if any entry is NaN. | |
Minimum | Returns the minimum value in the sample data. Returns NaN if data is empty or if any entry is NaN. | |
PopulationStandardDeviation | Evaluates the standard deviation from the provided full population. On a dataset of size N will use an N normalizer and would thus be biased if applied to a subset. Returns NaN if data is empty or if any entry is NaN. | |
PopulationVariance | Evaluates the variance from the provided full population. On a dataset of size N will use an N normalizer and would thus be biased if applied to a subset. Returns NaN if data is empty or if any entry is NaN. | |
StandardDeviation | Estimates the unbiased population standard deviation from the provided samples. On a dataset of size N will use an N-1 normalizer (Bessel's correction). Returns NaN if data has less than two entries or if any entry is NaN. | |
Variance | Estimates the unbiased population variance from the provided samples. On a dataset of size N will use an N-1 normalizer (Bessel's correction). Returns NaN if data has less than two entries or if any entry is NaN. | |
WindowSize |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
GetHashCode | Serves as the default hash function. (Inherited from Object) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
Push | Update the running statistics by adding another observed sample (in-place). | |
PushRange | Update the running statistics by adding a sequence of observed sample (in-place). | |
ToString | Returns a string that represents the current object. (Inherited from Object) |