File: RMiaco.Rd

package info (click to toggle)
r-cran-randomfields 3.3.14-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,916 kB
  • sloc: cpp: 52,159; ansic: 3,015; makefile: 2; sh: 1
file content (58 lines) | stat: -rw-r--r-- 1,393 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
\name{RMiaco}
\alias{RMiaco}
\title{Iaco-Cesare model}
\description{
 The space-time covariance function is
 \deqn{
 C(r,t) = (1.0 + r^\nu + t^\lambda)^\delta
 }
 
 }
 \usage{
RMiaco(nu, lambda, delta, var, scale, Aniso, proj)
}

\arguments{
 \item{nu,lambda}{number in \eqn{(0,2]}}
 \item{delta}{positive number}
 \item{var,scale,Aniso,proj}{optional arguments; same meaning for any
 \command{\link{RMmodel}}. If not passed, the above
 covariance function remains unmodified.}
}


\value{
 \command{\link{RMiaco}} returns an object of class \code{\link[=RMmodel-class]{RMmodel}}.

}

\references{
\itemize{
 \item de Cesare, L., Myers, D.E., and Posa, D. (2002)
 FORPRAN programs for space-time modeling. \emph{Computers \&
 Geosciences} \bold{28}, 205-212.
 \item de Iaco, S.. Myers, D.E., and Posa, D. (2002)
 Nonseparable space-time covariance models: some parameteric
 families. \emph{Math. Geol.} \bold{34}, 23-42.
 }
}

\me
\seealso{
 \command{\link{RMmodel}}.
 }


\keyword{spatial}
\keyword{models}

\examples{\dontshow{StartExample()}
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
##                   RFoptions(seed=NA) to make them all random again

model <- RMiaco(nu=1, lambda=1.5, delta=0.5)
plot(model, dim=2)

x <- seq(0, 10, 0.1)
plot(RFsimulate(model, x=x, y=x))
\dontshow{FinalizeExample()}}