gspx 0.1.2

Sparse graph signal processing and spectral graph wavelets in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Convolution engines for static, dynamic, and Chebyshev graph filtering.
//!
//! Use [`StaticConvolver`] for fixed graphs, [`DynamicConvolver`] for low-rank
//! topology updates with fixed poles, and [`ChebyConvolver`] for polynomial
//! recurrence filtering.

mod cheby;
mod dynamic;
mod shared;
#[path = "static.rs"]
mod static_impl;

pub use cheby::ChebyConvolver;
pub use dynamic::DynamicConvolver;
pub use static_impl::{LowpassOptions, StaticConvolver};