Constructs a time_series_model for a Matern covariance process with
variance sigma2, range lambda, and smoothness alpha.
The autocovariance is
\( \gamma(h) = \mathrm{cov}(X_t, X_{t+h}) = \frac{2 \sigma^2}{\Gamma(\alpha-1 / 2) 2^{\alpha-1 / 2}}|\lambda h|^{\alpha-1 / 2} \mathcal{K}_{|\alpha-1 / 2|}(| \lambda h|)\)
where \(\mathcal{K}_\omega(x)\) is the modified Bessel function of the second kind of order \(\omega\).
matern(sigma2 = NULL, lambda = NULL, alpha = NULL)A time_series_model object.
Lilly JM, Sykulski AM, Early JJ, Olhede SC (2017). "Fractional Brownian motion, the Matérn process, and stochastic modeling of turbulent dispersion." Nonlinear Processes in Geophysics, 24(3), 481-514.
mod <- matern(sigma2 = 1, lambda = 0.2, alpha = 1.0)
mod
#> Stochastic process
#> Model : Matern
#> Parameters : sigma2 = 1, lambda = 0.2, alpha = 1