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
//! Spectral Graph Modal Analysis (SGMA) for joint spatial-temporal wavelets.
//!
//! This module exposes a Rust API built around explicit Laplacians, signal
//! matrices, and cache management.

mod analysis;
mod numerics;
mod peaks;

pub use analysis::Sgma;
pub use peaks::{ClusterCloud, ModeTable, NetworkAnalysisResult, PeakCloud, Peaks};