Filters high frequencies out of a time series. The filter has the structure
x'(n) = (x(n-1)+2*x(n)+x(n+1))/4
Usage
lowpass(x, i = 1, fix = NULL)
Arguments
x
Vector of data points, that should be filtered or MAgPIE object
i
number of iterations the filter should be applied to the data
fix
Fixes the starting and/or ending data point. Default value is
NULL which doesn't fix any point. Available options are:
"start" for fixing the starting point, "end" for fixing the
ending point and "both" for fixing both ends of the data.