powered by
This function return the data smoothed using the an Hamming window filter. Data are smoothed using a cosine window with particular coefficients.
Hamming(raw_data, buffer_size = 5)
Data upon which the algorithm is applied
number of points the algorithm use to compute the coefficients of the Hann window
Smoothed data using Hann Window filter
# NOT RUN { raw_data = c(1:100) smoothed_data = Hamming(raw_data) # }
Run the code above in your browser using DataLab