pmfcm | R Documentation |
Computes the eFCM-based P(W \leq w)
for a single d
-dimensional vector w
.
pmfcm(
w,
lambda,
delta,
dist = NULL,
coord = NULL,
smooth = 0.5,
abseps = 1e-05,
releps = 1e-05,
maxpts = 25000,
miles = FALSE
)
w |
Numeric vector of length |
lambda , delta |
Positive scalars: common-factor rate |
dist |
Optional |
coord |
Optional two-column matrix/data.frame of coordinates (lon, lat) to build |
smooth |
Matérn smoothness |
abseps , releps |
Absolute/relative tolerances for the MVN CDF. |
maxpts |
Maximum number of function evaluations for the MVN CDF. |
miles |
Logical; passed to |
A single numeric CDF value in [0,1]
.
data(LonLat)
d <- 2
w <- rep(0.3, d)
pmfcm(w, lambda = 2, delta = 100, coord = LonLat[1:2, ])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.