//! Signal processing functions built on FFT.
//!
//! This module provides common signal processing operations:
//! - Hilbert transform and analytic signal
//! - Power spectral density (Welch's method)
//! - Cepstral analysis
//!
//! Requires the `signal` feature flag (depends on `std` for math functions).
//!
//! # Example
//!
//! ```ignore
//! use oxifft::signal::{hilbert, envelope, welch, WelchConfig, SpectralWindow};
//!
//! // Analytic signal
//! let signal: Vec<f64> = (0..1024).map(|i| (i as f64 * 0.1).sin()).collect();
//! let analytic = hilbert(&signal);
//! let env = envelope(&signal);
//!
//! // Power spectral density
//! let config = WelchConfig { segment_len: 256, overlap: 128, window: SpectralWindow::Hann };
//! let psd = welch(&signal, &config);
//! ```
pub use ;
pub use ;
pub use ;
pub use ;