Learn R Programming

LatticeKrig (version 9.3.0)

LKinfoCheck: Check the LKinfo object

Description

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) )

Usage

LKinfoCheck(object, ...)
# S3 method for default
LKinfoCheck(object, ...)
# S3 method for LKRectangle
LKinfoCheck(object, ...)

Value

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.

Arguments

object

An LKinfo object to be checked.

...

Additional arguments to method.

Author

Doug Nychka

See Also

LKrigSetup