kaiser | R Documentation |
Returns the filter coefficients of the n-point Kaiser window with parameter beta.
kaiser(n, beta)
n |
filter order. |
beta |
bessel shape parameter; larger |
An array of filter coefficients of length(n)
.
Original Octave version by Kurt Hornik. Conversion to R by Tom Short.
Oppenheim, A. V., Schafer, R. W., and Buck, J. R. (1999). Discrete-time signal processing. Upper Saddle River, N.J.: Prentice Hall.
https://en.wikipedia.org/wiki/Kaiser_window
Octave Forge https://octave.sourceforge.io/
hamming
, kaiserord
plot(kaiser(101, 2), type = "l", ylim = c(0,1))
lines(kaiser(101, 10), col = "blue")
lines(kaiser(101, 50), col = "green")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.