IRunningAverage InterfaceNReco.Recommender Class Library
Interface for classes that can keep track of a running average of a series of numbers. One can add to or remove from the series, as well as update a datum in the series. The class does not actually keep track of the series of values, just its running average, so it doesn't even matter if you remove/change a value that wasn't added.

Namespace: NReco.CF.Taste.Impl.Common
Assembly: NReco.Recommender (in NReco.Recommender.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public interface IRunningAverage

The IRunningAverage type exposes the following members.

Methods

  NameDescription
Public methodAddDatum
Public methodChangeDatum
Public methodGetAverage
Public methodGetCount
Public methodInverse
Public methodRemoveDatum
Top
See Also