View source: R/NoiseKrigingClass.R
as.km.NoiseKriging | R Documentation |
NoiseKriging
object into the "km"
class of the
DiceKriging package.Coerce a NoiseKriging
object into the "km"
class of the
DiceKriging package.
## S3 method for class 'NoiseKriging'
as.km(x, .call = NULL, ...)
x |
An object with S3 class |
.call |
Force the |
... |
Not used. |
An object of having the S4 class "KM"
which extends
the "km"
class of the DiceKriging package and
contains an extra NoiseKriging
slot.
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) + X/10 * rnorm(nrow(X)) # add noise dep. on X
## fit and print
k <- NoiseKriging(y, noise=(X/10)^2, X, kernel = "matern3_2")
print(k)
k_km <- as.km(k)
print(k_km)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.