Detrend: Auxiliary function for removing trends and mean from observation vector or ensemble matrix or data.frame.
Description
The function fits a linear function to a vector of observations or to the ensemble mean vector of an ensemble matrix. The linear trend is removed, and if option demean is true, the mean grand mean is removed as well.
Usage
Detrend(x, demean=TRUE)
Arguments
x
A vector, matrix, or data.frame.
demean
logical; if true, the grand mean is removed from x
Value
The function returns an object of the same class as the argument `x`, but with its linear trend (and possibly its mean) removed.