[ top | up ]
Computes the Coefficients of a Rectangle Window.
Usage
rectangle.window(n)
Arguments
n
|
The length of the window.
|
Description
Returns the filter coefficents of a rectangle
window. That is a vector of n
1.
The purpose of this function is just to have a name for the R command
rep (1, n)
.
Value
A vector of length n
filled with 1.Author(s)
Andreas WeingesselSee Also
stftExamples
x<-rnorm(500)
y<-stft(x, wtype="rectangle.window")
plot(y)