Exemplo n.º 1
0
        public FFT(int size)
        {
            Size    = size;
            InPlace = true;

            _instance = new PFFFT(size, Transform.Real);
        }
Exemplo n.º 2
0
 public FFTAnalyzer(int windowSize)
 {
     WindowSize = windowSize;
     fft        = new PFFFT.PFFFT(windowSize, PFFFT.Transform.Real);
     windowFunctionNormalizationDecibelOffset = 0;
 }