Skip to content

Hamming Window

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

hamming

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
Code
int len = 51;

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

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