The algorithm mentioned on Wikipedia has a line $$s_t = \alpha \frac{x_t}{c_{t-L}} + (1-\alpha) (s_{t-1} + b_{t-1})$$.
For $1 < t < L$ how should we interpret $c_{t-L}$? On that interval, should we replace it with $c_t$?
|
The algorithm mentioned on Wikipedia has a line $$s_t = \alpha \frac{x_t}{c_{t-L}} + (1-\alpha) (s_{t-1} + b_{t-1})$$. For $1 < t < L$ how should we interpret $c_{t-L}$? On that interval, should we replace it with $c_t$? |
||||
|
|
|
For triple exponential smoothing it says that at least one seasonal cycle of length L must be completed. So t is actually greater than L. The notation is 1 < t < L but the t is given modulo L. |
|||||||||||||||
|