Learn R Programming

rlibkriging (version 0.9-1)

copy.NoiseKriging: Duplicate a NoiseKriging Model

Description

Duplicate a NoiseKriging Model

Usage

# S3 method for NoiseKriging
copy(object, ...)

Value

The copy of object.

Arguments

object

An S3 NoiseKriging object.

...

Not used.

Author

Yann Richet yann.richet@irsn.fr

Examples

Run this code
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) + X/10 * rnorm(nrow(X))

k <- NoiseKriging(y, (X/10)^2, X, kernel = "matern3_2", objective="LL")
print(k)

print(copy(k))

Run the code above in your browser using DataLab