library(GeoModels)###################################################################### Example 1. Inverse of Covariance matrix associated to### a Matern correlation model################################################################### Define the spatial-coordinates of the points: x <- runif(15,0,1) y <- runif(15,0,1) coords <- cbind(x,y)# Matern Parameters param=list(smooth=0.5,sill=1,scale=0.2,nugget=0) a=matrix <- GeoCovmatrix(coordx=coords, corrmodel="Matern", param=param)## decomposition with cholesky method b=MatDecomp(a$covmat,method="cholesky")## inverse of covariance matrix inverse=MatInv(a$covmat)