Click or drag to resize
Accord.NET (logo)

IRunningTValue Interface

Common interface for running statistics.

Namespace:  Accord.Statistics.Running
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IRunning<in TValue>
Request Example View Source

Type Parameters

TValue

The IRunningTValue type exposes the following members.

Methods
  NameDescription
Public methodClear
Clears all measures previously computed.
Public methodPush
Registers the occurrence of a value.
Top
Remarks
Running statistics are measures computed as data becomes available. When using running statistics, there is no need to know the number of samples a priori, such as in the case of the direct Mean(Double).
See Also