RMmatern: Whittle-Matern Covariance Model

Description Usage Arguments Details Value Note References See Also Examples

View source: R/RMmodels.R

Description

RMmatern is a stationary isotropic covariance model belonging to the Matern family. The corresponding covariance function only depends on the distance r ≥ 0 between two points.

The Whittle model is given by

C(r)=W_{ν}(r)=2^{1- ν} Γ(ν)^{-1}r^{ν}K_{ν}(r)

where ν > 0 and K_ν is the modified Bessel function of second kind.

The Matern model is given by

C(r) = 2^{1- ν} Γ(ν)^{-1} (√{2ν} r)^ν K_ν(√{2ν} r)

The Handcock-Wallis parametrisation is given by

C(r) = 2^{1- ν} Γ(ν)^{-1} (2√{ν} r)^ν K_ν(2√{ν} r)

Usage

1
2
3
4
5
RMwhittle(nu, notinvnu, var, scale, Aniso, proj)

RMmatern(nu, notinvnu, var, scale, Aniso, proj)

RMhandcock(nu, notinvnu, var, scale, Aniso, proj)

Arguments

nu

a numerical value called “smoothness parameter”; should be greater than 0.

notinvnu

logical. If FALSE then in the definition of the models ν is replaced by 1/ν. This parametrization seems to be more natural. Default is, however, TRUE according with the definitions in literature.

var,scale,Aniso,proj

optional arguments; same meaning for any RMmodel. If not passed, the above covariance function remains unmodified.

Details

The three models are alternative parametrizations of the same covariance function. The Matern model or the Handcock-Wallis parametrisation should be preferred as they seperate the effects of the scaling parameter and the shape parameter.

The Whittle-Matern model is the model of choice if the smoothness of a random field is to be parametrized: the sample paths of a Gaussian random field with this covariance structure are m times differentiable if and only if ν > m (see Gelfand et al., 2010, p. 24).

Furthermore, the fractal dimension (see also RFfractaldim) D of the Gaussian sample paths is determined by ν: We have

D = d + 1 - ν, 0 < ν < 1

and D = d for ν > 1 where d is the dimension of the random field (see Stein, 1999, p. 32).

If ν=0.5 the Matern model equals RMexp.

For ν tending to a rescaled Gaussian model RMgauss C(r) = -r^2 appears as limit of the above Handcock-Wallis parametrisation.

For generalizations see section ‘See Also’.

Value

The functions return an object of class RMmodel.

Note

The Whittle-Matern model is a normal scale mixture.

References

Covariance function

Tail correlation function (for 0 < ν ≤ 1/2)

See Also

Examples

1
2
3
4
5
6
7
8
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
##                   RFoptions(seed=NA) to make them all random again

x <- seq(0, 1, len=100)
model <- RMwhittle(nu=1, Aniso=matrix(nc=2, c(1.5, 3, -3, 4)))
plot(model, dim=2, xlim=c(-1,1))
z <- RFsimulate(model=model, x, x)
plot(z)

Example output

Loading required package: sp
Loading required package: RandomFieldsUtils

Attaching package: 'RandomFields'

The following object is masked from 'package:RandomFieldsUtils':

    RFoptions

The following objects are masked from 'package:base':

    abs, acosh, asin, asinh, atan, atan2, atanh, cos, cosh, exp, expm1,
    floor, gamma, lgamma, log, log1p, log2, logb, max, min, round, sin,
    sinh, sqrt, tan, tanh, trunc

NULL
NOTE: simulation is performed with fixed random seed 0.
Set 'RFoptions(seed=NA)' to make the seed arbitrary.
New output format of RFsimulate: S4 object of class 'RFsp';
for a bare, but faster array format use 'RFoptions(spConform=FALSE)'.

RandomFields documentation built on Jan. 19, 2022, 1:06 a.m.