eval.cmod {gear} | R Documentation |
eval.cmod
evaluates the covariance
of a model based on the provided arguments. This
function will be deprecated in the future. Please use
the evaluate
function.
eval.cmod(mod, d, coords = NULL)
mod |
A covariance or semivariance model. |
d |
An |
coords |
Not used. |
Returns the evaluated model with necessary
components needed for estimate
and
predict
.
Joshua French
n = 10
coords = matrix(runif(2*n), nrow = n, ncol = 2)
d = as.matrix(dist(coords))
cmod = cmod_std(model = "exponential", psill = 1, r = 1)
eval.cmod(cmod, d)