Click or drag to resize
Accord.NET (logo)

IMovingStatistics Interface

Common interface for moving-window statistics.

Namespace:  Accord.Statistics.Moving
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IMovingStatistics : IRunningStatistics, 
	IRunning<double>, IMoving<double>
Request Example View Source

The IMovingStatistics type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of samples within the window.
(Inherited from IMovingTValue.)
Public propertyMean
Gets the current mean of the gathered values.
(Inherited from IRunningStatistics.)
Public propertyStandardDeviation
Gets the current standard deviation of the gathered values.
(Inherited from IRunningStatistics.)
Public propertyVariance
Gets the current variance of the gathered values.
(Inherited from IRunningStatistics.)
Public propertyWindow
Gets the size of the window.
(Inherited from IMovingTValue.)
Top
Methods
Remarks
Moving-window statistics such as moving average and moving variance, are a type of finite impulse response filters used to analyze a set of data points by creating a series of averages of different subsets of the full data set.
See Also