View source: R/NuggetKrigingClass.R
covMat.NuggetKriging | R Documentation |
Compute Covariance Matrix of NuggetKriging Model
## S3 method for class 'NuggetKriging'
covMat(object, x1, x2, ...)
object |
An S3 NuggetKriging object. |
x1 |
Numeric matrix of input points. |
x2 |
Numeric matrix of input points. |
... |
Not used. |
A matrix of the covariance matrix of the NuggetKriging model.
Yann Richet yann.richet@irsn.fr
f <- function(x) 1 - 1 / 2 * (sin(12 * x) / (1 + x) + 2 * cos(7 * x) * x^5 + 0.7)
set.seed(123)
X <- as.matrix(runif(10))
y <- f(X)
k <- NuggetKriging(y, X, kernel = "gauss")
x1 = runif(10)
x2 = runif(10)
covMat(k, x1, x2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.