https://github.com/cran/fields
Raw File
Tip revision: 6c8b30169bba182a68765ee3cb9b4e2ef7d38332 authored by Doug Nychka on 16 November 2011, 00:00:00 UTC
version 6.6.3
Tip revision: 6c8b301
test.for.zero.R
# fields, Tools for spatial data
# Copyright 2004-2011, Institute for Mathematics Applied Geosciences
# University Corporation for Atmospheric Research
# Licensed under the GPL -- www.gpl.org/licenses/gpl.html
test.for.zero <- function(xtest, xtrue, tol = 1e-08, 
    relative = TRUE, tag = NULL) {
    denom <- ifelse(relative, mean(abs(c(xtrue))), 1)
    test.value <- sum(abs(c(xtest) - c(xtrue)))/denom
    if (test.value < tol) {
        if (exists("test.for.zero.flag")) {
            if (!is.null(tag)) {
                cat("testing: ", tag, fill = TRUE)
            }
            cat("    PASSED test at tolerance ", tol, fill = TRUE)
        }
    }
    else {
        if (!is.null(tag)) {
            cat("testing: ", tag, fill = TRUE)
        }
        cat("FAILED test value = ", test.value, " at tolerance ", 
            tol, fill = TRUE)
    }
}
back to top