Kriging::fit
Description
Fit a Kriging
Object using Given Observations
Usage
Python
# k = Kriging(kernel=...) k.fit(y, X, regmodel = "constant", normalize = False, optim = "BFGS", objective = "LL", parameters = None)
R
# k = Kriging(kernel=...) k$fit(y, X, regmodel = "constant", normalize = FALSE, optim = "BFGS", objective = "LL", parameters = NULL)
Matlab/Octave
% k = Kriging(kernel=...) k.fit(y, X, regmodel = "constant", normalize = false, optim = "BFGS", objective = "LL", parameters = [])
Arguments
Argument |
Description |
---|---|
|
Numeric vector of response values. |
|
Numeric matrix of input design. |
|
Universal Kriging linear trend: |
|
Logical. If |
|
Character giving the Optimization method used to fit hyper-parameters. Possible values are: |
|
Character giving the objective function to optimize. Possible values are: |
|
Initial values for the hyper-parameters. When provided this must be named list with elements |
Details
The hyper-parameters (variance and vector of correlation ranges)
are estimated thanks to the optimization of a criterion given by
objective
, using the method given in optim
.
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)
k <- Kriging("matern3_2")
print("before fit")
print(k)
k$fit(y,X)
print("after fit")
print(k)
Results
[1] "before fit"
* covariance:
* kernel: matern3_2
[1] "after fit"
* data: 10x[0.0455565,0.940467] -> 10x[0.194057,1.00912]
* trend constant (est.): 0.433954
* variance (est.): 0.0873685
* covariance:
* kernel: matern3_2
* range (est.): 0.240585
* fit:
* objective: LL
* optim: BFGS