scirs2-wasm 0.4.0

WebAssembly (WASM) bindings for SciRS2 - JavaScript/TypeScript interop for scientific computing
Documentation
1
2
3
4
5
6
7
8
//! Streaming FFT processor for real-time audio and sensor data.
//!
//! Processes a continuous stream of samples through a ring-buffer and emits
//! [`SpectralFrame`]s whenever `hop_size` new samples have arrived.

pub mod processor;

pub use processor::{SpectralFrame, StreamingFftConfig, StreamingFftProcessor, WindowFn};