| Independent Variables {RandomFields} | R Documentation |
Method to simulate the Nugget effect.
RPnugget(phi, boxcox, tol, vdim)
phi |
object of class |
boxcox |
the one or two parameters of the box cox transformation.
If not given, the globally defined parameters are used.
see |
tol |
points at a distance less than or equal to Default: |
vdim |
positive integer; the model is treated
Default is that it takes the value of the submodel |
This method only allows RMnugget as a submodel.
The method also allows for zonal nugget effects. Only there the
argument tol becomes important.
For the zonal nugget effect, the anisotropy matrix Aniso
should be given in RMnugget. There, only the kernal of the
matrix is important.
RPnugget returns an object of class
RMmodel
Martin Schlather, schlather@math.uni-mannheim.de
Schlather, M. (1999) An introduction to positive definite functions and to unconditional simulation of random fields. Technical report ST 99-10, Dept. of Maths and Statistics, Lancaster University.
Gaussian,
RP,
RPcoins,
RPhyperplane,
RPspectral,
RPtbm.
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set ## RFoptions(seed=NA) to make them all random again model <- RMnugget() z <- RFsimulate(model=model, 0:10, 0:10, n=4) plot(z) model <- RPnugget(RMnugget(var=0.01, Aniso=matrix(nc=2, rep(1,4)))) z <- RFsimulate(model=model, 0:10, 0:10, n=4) plot(z)