| RMlgd {RandomFields} | R Documentation |
RMlgd is a stationary isotropic covariance model, which is valid only for dimensions
d =1,2.
The corresponding covariance function only depends on the distance r \ge 0 between
two points and is given by
C(r) =1 - \beta^{-1}(\alpha + \beta)r^{\alpha} 1_{[0,1]}(r) + \alpha^{-1}(\alpha + \beta)r^{-\beta} 1_{r>1}(r)
where \beta >0 and 0 < \alpha \le (3-d)/2,
with d denoting the dimension of the random field.
RMlgd(alpha, beta, var, scale, Aniso, proj)
alpha |
argument whose range depends on the dimension of the random field: |
beta |
positive number |
var, scale, Aniso, proj |
optional arguments; same meaning for any
|
The model is only valid for dimension d=1,2.
This model admits simulating random fields where fractal dimension
D of the Gaussian sample and Hurst coefficient H
can be chosen independently (compare also RMgencauchy):
Here, the random field has fractal dimension
D = d+1 - \alpha/2
and Hurst coefficient
H = 1-\beta/2
for 0< \beta \le 1.
RMlgd returns an object of class
RMmodel.
Martin Schlather, schlather@math.uni-mannheim.de, https://www.wim.uni-mannheim.de/schlather/
Gneiting, T. and Schlather, M. (2004) Stochastic models which separate fractal dimension and Hurst effect. SIAM review 46, 269–282.
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
## RFoptions(seed=NA) to make them all random again
model <- RMlgd(alpha=0.7, beta=4, scale=0.5)
x <- seq(0, 10, 0.02)
plot(model)
plot(RFsimulate(model, x=x))