RPbrownresnick(phi, tcf, xi, mu, s)
phi
or
tcf
must be given.xi
is always a number, i.e. $\xi$
is constant
in space. In contrast, $\mu$ and $s$ might be constant
numerical value or given a RMmodel
, in particular by a
RMtrend
model. The default values of $mu$ and $s$
are $1$ and $z\xi$, respectively. The functions RPbrorig
, RPbrshifted
and RPbrmixed
perform the simulation of a Brown-Resnick process, which is defined by
model
.
For simulation, internally, one of the methods
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
## RFoptions(seed=NA) to make them all random again
StartExample()
\dontrun{
model <- ~ RPbrownresnick(RMfbm(alpha=A), xi=0)
x <- seq(0, 10, 0.2)
z <- RFsimulate(model=model, x, x, n=4, A=0.9) # about 1 min on a fast machine
plot(z)
z <- RFsimulate(model, x=x, n=4, A=1.9)
plot(z)
## basic model in Buishand, de Haan, Zhou (2008)
model <- RMfbm(proj=1, alpha=1, var=0.5) + RMfbm(proj=2, alpha=1, var=0.5)
x <- seq(0, 5, 0.05)
z <- RFsimulate(RPbrownresnick(model, xi=0), x, x, every=1000)
plot(z)
}
## for some more sophisticated models see 'maxstamableAdvanced'
FinalizeExample()
Run the code above in your browser using DataLab