NaiveFFT constructor
NaiveFFT(
- int size
Constructs an FFT object with the given size.
Implementation
NaiveFFT(int size)
: _twiddles = twiddleFactors(size),
_buf = Float64x2List(size),
super._(size);