multem {multivator} | R Documentation |
The multivariate emulator
Description
A multivariate generalization of the interpolant()
function of
the emulator
package
Usage
multem(x, expt, hp, LoF = NULL, give=FALSE, Sigmainv=NULL, ...)
Arguments
x |
Points at which the function is to be estimated
in the form of an object of class |
expt |
Points at which the code
has been evaluated ( |
hp |
hyperparameter object, of class |
give |
Boolean, with |
Sigmainv |
The inverse of the variance matrix of the observations with default
|
LoF |
List of regressor functions |
... |
Further arguments passed to |
Details
This is the central function of the package. It is the analogue of
interpolant()
of the emulator package.
Author(s)
Robin K. S. Hankin
See Also
Examples
data(mtoys)
d <- obs_maker(toy_mm, toy_mhp, toy_LoF, toy_beta)
ex <- experiment(toy_mm , d)
Sigmainv <- solve(var.matrix(toy_mm,hp=toy_mhp))
multem(x=toy_mm2, expt=ex, hp=toy_mhp,LoF=toy_LoF, give=TRUE)
[Package multivator version 1.1-11 Index]