avila-math 0.1.0

Arxis Foundation: The ARX (fortress) - Mathematical kernel with quaternions, tensors, 4D geometry, Conv4D, differential operators
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Adaptive Filters and Digital Signal Processing
//!
//! Implements Kalman filter, Wiener filter, and Z-transform for discrete systems.

pub mod kalman;
pub mod wiener;
pub mod ztransform;

pub use kalman::KalmanFilter;
pub use wiener::WienerFilter;
pub use ztransform::{inverse_ztransform, ztransform, ZTransform};