copy.NoiseKriging: Duplicate a NoiseKriging Model

View source: R/NoiseKrigingClass.R

copy.NoiseKrigingR Documentation

Duplicate a NoiseKriging Model

Description

Duplicate a NoiseKriging Model

Usage

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

Arguments

object

An S3 NoiseKriging object.

...

Not used.

Value

The copy of object.

Author(s)

Yann Richet yann.richet@irsn.fr

Examples

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))

rlibkriging documentation built on July 9, 2023, 5:53 p.m.