STFT.offline constructor
STFT.offline({})
Creates an STFT context intended for whole-buffer processing.
Implementation
factory STFT.offline({
required int nFft,
int? winLen,
required int hop,
StftWindow window = StftWindow.hann,
bool meanSubtract = false,
bool center = false,
}) => STFT(
nFft: nFft,
winLen: winLen,
hop: hop,
window: window,
meanSubtract: meanSubtract,
center: center,
);