Hamming: Hamming window filter.

Description Usage Arguments Value Examples

View source: R/filters.R

Description

This function return the data smoothed using the an Hamming window filter. Data are smoothed using a cosine window with particular coefficients.

Usage

1
Hamming(raw_data, buffer_size = 5)

Arguments

raw_data

Data upon which the algorithm is applied

buffer_size

number of points the algorithm use to compute the coefficients of the Hann window

Value

Smoothed data using Hann Window filter

Examples

1
2
raw_data = c(1:100)
smoothed_data = Hamming(raw_data)

Convolutioner documentation built on March 11, 2021, 5:07 p.m.