R/Class-preCKrigePoints.R

# # # Definition of the preCKrigePoints class
# # # Christoph Hofer, 30-03-
# setClass(
#   Class = "preCKrigePoints",
#   representation( covmat = "list", posindex = "list", model = "list",
#     data = "data.frame", coords = "matrix" ),
#   prototype = list(),
#   sealed = TRUE,
#   S3methods =FALSE
# )

## 2023-01-25 A. Papritz revised class definition
preCKrigePoints <- setClass(
  "preCKrigePoints",
  slots = c(
    covmat = "list",
    posindex = "list",
    model = "list",
    data = "data.frame",
    coords = "matrix"
  )
)

Try the constrainedKriging package in your browser

Any scripts or data that you put into this service are public.

constrainedKriging documentation built on Sept. 12, 2024, 7 a.m.