Skip to content

Kaiser Window

Sambit Paul edited this page Dec 2, 2023 · 2 revisions

kaiser

Symmetricity parameter is a boolean with the following effect:

  • TRUE : generates a symmetric window, for use in filter design
  • FALSE : generates a periodic window, for use in spectral analysis

The parameters for this window are as follows:

  • Window Length ⇨ 51
  • Beta = 14
Code
int len = 51;
double beta = 14.0;

Kaiser w1 = new Kaiser(len); // For symmetric
double[] out = w1.getWindow(beta);

Kaiser w2 = new Kaiser(len, false); // For asymmetric
double[] out = w2.getWindow(beta);
Clone this wiki locally