advanced_algorithms/numerical/mod.rs
1//! Numerical analysis and linear algebra algorithms
2//!
3//! This module provides implementations of fundamental numerical algorithms including:
4//! - Fast Fourier Transform (FFT)
5//! - QR Decomposition
6//! - Newton-Raphson Method
7//! - Singular Value Decomposition (SVD)
8
9pub mod fft;
10pub mod qr_decomposition;
11pub mod newton_raphson;
12pub mod svd;