Class RunningAverage
Represents an operator that computes the running average of all the arrays in the sequence.
public class RunningAverage : ArrayTransform
- Inheritance
-
RunningAverage
- Inherited Members
Properties
- Alpha
Gets or sets the weight to assign to each new array in the sequence. This parameter determines how fast the average forgets previous values.
Methods
- Process<TArray>(IObservable<TArray>)
Computes the running average of all the arrays in an observable sequence.