StatTimeSerAnalysis.BoxCoxInv Method

procedure BoxCoxInv(const Y: TVec; const U: TVec; const Lambda: Double);

Inverse Box-Cox transformation.

#NameDescription
1YTransformed time series.
2UTime series. Size of Data is adjusted automatically.
3LambdaBox-Cox transformation lambda value. An exception is raised if Lambda < 0 .

Result: stored in self (calling object)

Remarks:

Performs the inverse Box-Cox transformation on time series. The inverse Box-Cox transformation is defined by the following equation:

Fλ(Yt)={(Ytλ+1)1/λλ>0expYtλ=0F_\lambda (Y_t) = \begin{cases} (Y_t \lambda +1)^{1/\lambda} & \lambda > 0 \\ \exp Y_t & \lambda = 0 \end{cases}
See Also: StatTimeSerAnalysis.BoxCox