I am trying to find out the algorithm for taylor window function but i have looked everywhere and i dont see any proper algorithm. I read it is similar to Kaiser Window but thats all I know.
Can someone help me find the algorithm?
I am trying to find out the algorithm for taylor window function but i have looked everywhere and i dont see any proper algorithm. I read it is similar to Kaiser Window but thats all I know.
Can someone help me find the algorithm?
By Catalog of Window Taper Functions for Sidelobe Control, (Armin W. Doerry, Sandia National Laboratories, p.132) The Taylor window taper function approximates the Dolph-Chebyshev window’s constant sidelobe level for a parameterized number of near-in sidelobes, but then allows a taper beyond. This makes it realizable, and in fact popular in some signal processing circles, especially radar signal processing.
The window function itself, scaled for unit DC gain, is calculated as
$$ w(t) = \left( 1 + 2 \sum_{m=1}^{\bar{n}-1} F_m \cos(2\pi mt) \right)\operatorname{rect}(t)$$
Where $F_m$ = coefficients (equation to solve coefficients can be found from source documentation) and $\bar{n}$ = the distance from the mainlobe for which sidelobes are constant.
Window Utilities (Matlab) package by Joe Henning includes taylwin.m.
Additional resources:
@GrapefruitIsAwesome's link in comments section.
Mathwork's function reference for taylorwin.m.