cokm.fit {ARCokrig}R Documentation

fit the autoregressive cokriging model

Description

This function estimates parameters in autogressive cokriging models

Usage

cokm.fit(obj)

Arguments

obj

a cokm object construted via the function cokm in this package

Author(s)

Pulong Ma <mpulong@gmail.com>

See Also

cokm, cokm.param, cokm.predict, ARCokrig

Examples


Funcc = function(x){
  return(0.5*(6*x-2)^2*sin(12*x-4)+10*(x-0.5)-5)
}

Funcf = function(x){
  z1 = Funcc(x)
  z2 = 2*z1-20*x+20 + sin(10*cos(5*x))
  return(z2)
}

#####################################################################
###### Nested design 
#####################################################################
Dc <- seq(-1,1,0.1)
indDf <- c(1, 3, 6, 8, 10, 13, 17, 21)
zc <- Funcc(Dc)
Df <- Dc[indDf]
zf <- Funcf(Df)

input.new = as.matrix(seq(-1,1,length.out=200))


## create the cokm object
prior = list(name="JR")
obj = cokm(formula=list(~1,~1+x1), output=list(c(zc), c(zf)),
              input=list(as.matrix(Dc), as.matrix(Df)),
              prior=prior, cov.model="matern_5_2")

## update model parameters in the cokm object

obj = cokm.fit(obj)



[Package ARCokrig version 0.1.2 Index]