Function istft
Source pub fn istft(
frames: &[Vec<Complex>],
hop_size: usize,
window_fn: &[f64],
) -> Vec<f64>
Expand description
Compute the inverse STFT (overlap-add reconstruction).
ยงArguments
frames โ STFT frames from stft (each of length window_size).
hop_size โ hop size used when computing the STFT.
window_fn โ the same window used for analysis (for proper reconstruction).
Returns the reconstructed real signal.