hanning.window: Computes the Coefficients of a Hanning Window.

Description Usage Arguments Value Author(s) References See Also Examples

Description

The filter coefficients w(i) of a Hanning window of length n are computed according to the formula

w(i) = 0.5 - 0.5*cos(2*pi*i/(n-1))

Usage

1

Arguments

n

The length of the window.

Value

A vector containing the filter coefficients.

Author(s)

Andreas Weingessel

References

For a definition of the Hanning window, see for example
Alan V. Oppenheim and Roland W. Schafer: "Discrete-Time Signal Processing", Prentice-Hall, 1989.

See Also

stft, hamming.window

Examples

1
2
3
4
5
hanning.window(10)

x<-rnorm(500)
y<-stft(x, wtype="hanning.window")
plot(y)

molnplus/DasProjekt-e1071 documentation built on May 23, 2019, 6:06 a.m.