pub fn robust_noise_mad(signal: &[f32]) -> f32Expand description
Compute robust noise estimate using MAD (Median Absolute Deviation). Returns noise in the same units as the input signal.
MAD is more robust to outliers (peaks) than standard deviation, making it suitable for estimating baseline noise in signals with peaks.