Exponential Smoothing

Exponential Smoothing 이란 (Wiki)
한국어로 '지수 평활법' 이라고 한다.

In 'Exponential Smoothing' formula, we have 'Smooth constraint' called 'a' [alpha].

Condition 1: 0<a<1

Ft = a*Dt-1 + (1-a)Ft-1

Dt-1 : 직전 판매 실적
Ft-1 : 직전 수요 예측값

'직전 판매 실적' 에서 '직전 수요 예측값' 을 빼면 상수 'e'가 됨.
Dt-1 - Ft-1 = et-1

Comments

Popular posts from this blog

Primal problem and Dual problem

What is the Shadow price?

Why a negative coefficient of variable means it is not optimal in simplex method?