Click or drag to resize
Accord.NET (logo)

IMovingTValue 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 IMoving<in TValue> : IRunning<TValue>
Request Example View Source

Type Parameters

TValue

The IMovingTValue type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of samples within the window.
Public propertyWindow
Gets the size of the window.
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