parzenwin | R Documentation |
Return the filter coefficients of a Parzen window of length n
.
parzenwin(n)
n |
Window length, specified as a positive integer. |
Parzen windows are piecewise-cubic approximations of Gaussian windows.
Parzen window, returned as a vector.
Sylvain Pelissier, sylvain.pelissier@gmail.com.
Conversion to R by Geert van Boxtel, G.J.M.vanBoxtel@gmail.com.
p <- parzenwin(64)
g <- gausswin(64)
plot (p, type = "l", xlab = "Samples", ylab =" Amplitude", ylim = c(0, 1))
lines(g, col = "red")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.