Revision b270a23974945ef2220b2eb3a8f54d5a39fd86ae authored by Martin Schlather on 29 June 2009, 00:00:00 UTC, committed by Gabor Csardi on 29 June 2009, 00:00:00 UTC
1 parent a48e27e
Raw File
show.getregisterinfo.R

if (EXTENDED.TESTING <- file.exists("source.R")) source("source.R")
PrintModelList()
print(GetMethodNames())

x <- seq(0, 1, 0.1)
y <- seq(2, 4, 0.2)

RFparameters(Storing=TRUE, Print=1, CE.force=TRUE, TBMCE.force=TRUE)
grid <- TRUE
nug <- 0.5

for (method in GetMethodNames()) {
  cat("\n\n", method)
  if (interactive()) readline("-- press return")
  DeleteRegister()
  try(GaussRF(x, y, model="exp", param=c(0.1, 1.1, nug, 1.7 - 0.7),
              grid=grid, method=method))
  str(GetRegisterInfo(0, TRUE))
}


for (method in c("add.MPP")) {
  if (interactive()) readline(paste("\n\n", method, "-- press return"))
  GaussRF(x, y, model="circular", param=c(0.1, 1.1, nug, 1.7),
          grid=grid, method=method)
  str(GetRegisterInfo(0, TRUE))
  DeleteRegister()
}


back to top