RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
## RFoptions(seed=NA) to make them all random again
# get list of names of all functions
RFgetModelNames()
# any kind of positive definite functions
RFgetModelNames(type="positive definite")
# get a list of names of all stationary models
RFgetModelNames(type="positive definite", domain="single variable")
# get a vector of all model names
RFgetModelNames(group.by=NULL)
\dontrun{
# get list of all univariate stationary models
# additionally grouped by the isotropy attribute
str(RFgetModelNames(type="positive definite", domain="single variable",
vdim=1, group.by="isotropy"))
# get vector of all models which are operators
# and valid in the two-dimensional coordinate space
RFgetModelNames(type=c("tail correlation function",
"positive definite",
"variogram",
"undefined"),
operator=TRUE, valid.in.dim=2)
# processes and covariance function grouped by the stationarity
# argument and subsequently grouped by the isotropy argument
str(RFgetModelNames(type=c("positive definite", "variogram", "process"),
group.by=c("type", "domain", "isotropy")))
}
FinalizeExample()
Run the code above in your browser using DataLab