WindowFunction
in
Core Library Questions
•
2 years ago
Hello..
I am trying to analyse a signal with different type of windowing shapes before the FFT but for processing the only shape it seems to understand is FFT.HAMMING.
When i load the class WindowFunction it says that cannot find a class with that name.
the code is very simple
....
- minim = new Minim(this);
- in = minim.getLineIn(Minim.MONO,bSize);
- fft = new FFT(bSize, 22050);
- fft.window(FFT.HAMMING);
.....
In MINIM docs its says that you can simply change the field HAMMING with TRIANGULAR, COSINE etc..
is someone familiar with the problem?
i apologize if thats stupid enough but i cannot solve it..
Best regards
1