NaiveFFT constructor

NaiveFFT(
  1. int size
)

Constructs an FFT object with the given size.

Implementation

NaiveFFT(int size)
    : _twiddles = twiddleFactors(size),
      _buf = Float64x2List(size),
      super._(size);