alpha property

double alpha
getter/setter pair

Smoothing factor

Factor used to compute exponential moving average of the realtime data using the formula:

$y_n = alpha * x_n + (1 - alpha) * y_{n-1}$

Implementation

double alpha = 0.6;