https://github.com/cran/fields
Raw File
Tip revision: b10307613a7bc4d85a17dfbf2c41e0935f6eb0fb authored by Doug Nychka on 20 November 2004, 17:32:00 UTC
version 1.7.2
Tip revision: b103076
unscale.R
"unscale" <-
function (x, x.center, x.scale) 
{
    x <- scale(x, center = FALSE, scale = 1/x.scale)
    x <- scale(x, center = -x.center, scale = FALSE)
    x
}
back to top