window_kaiser1

Creation of a Kaiser window (from the shape parameter \(\beta\)).

Namespace: dsp::filter

Prototype

Vecf window_kaiser1(int n, float β, bool symetrical=true)

Parameters

nNumber of points.
βShape parameter.
symetricalIf true, realization of window symetrical around its center point (which should be done for the FIR filter design), otherwise realization of a periodical window (which is better for spectral analysis applications).

Returns

Column vector with window coefficients.

Description

This fonction will compute a Kaiser window with a specified shape parameter \(\beta\).

See also

window_kaiser(), kaiser_param()