Learn R Programming

gsignal (version 0.3-7)

boxcar: Rectangular window

Description

Return the filter coefficients of a boxcar (rectangular) window.

Usage

boxcar(n)

Value

rectangular window, returned as a vector.

Arguments

n

Window length, specified as a positive integer.

Author

Paul Kienzle, pkienzle@users.sf.net.
Conversion to R by Geert van Boxtel, G.J.M.vanBoxtel@gmail.com.

Details

The rectangular window (sometimes known as the boxcar or Dirichlet window) is the simplest window, equivalent to replacing all but n values of a data sequence by zeros, making it appear as though the waveform suddenly turns on and off. Other windows are designed to moderate these sudden changes, which reduces scalloping loss and improves dynamic range.

See Also

triang

Examples

Run this code

b <- boxcar(64)
plot (b, type = "l", xlab = "Samples", ylab =" Amplitude")

Run the code above in your browser using DataLab