This method performs some simple checks on the LKinfo object before it is returned by LKrigSetup. One benefit is that it checks for the essential components in each of the parts of the LKinfo object. Currently there is only a default method supplied.
Here is an example of how the checks work
LKinfo<- LKrigSetup( cbind(c(0,1)), LKGeometry="LKInterval",
a.wght=5, nlevel=2, nu=1.5, NC=4)
LKinfo$alpha
# corrupt it
LKinfo$alpha <- list( 1,.5,.25)
try( LKinfoCheck( LKinfo) )
LKinfoCheck(object, ...)
# S3 method for default
LKinfoCheck(object, ...)
# S3 method for LKRectangle
LKinfoCheck(object, ...)
There is no returned value. The benefit is the side effect of an error message and a "stop if the are problems in the LKinfo object.
An LKinfo object to be checked.
Additional arguments to method.
Doug Nychka
LKrigSetup