solvr 0.2.0

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generic implementations of signal analysis algorithms.
//!
//! GPU-accelerable algorithms (hilbert, resample) live here.
//! CPU-only algorithms (decimate, find_peaks, savgol, extrema, medfilt, wiener)
//! live in cpu/ and use helpers from this module.

pub mod helpers;
mod hilbert;
mod resample;

pub use helpers::{
    apply_butter_lowpass, apply_fir_lowpass, compute_prominences, compute_savgol_coeffs,
    filter_by_distance,
};
pub use hilbert::hilbert_impl;
pub use resample::resample_impl;