advanced-algorithms 0.1.4

A comprehensive library of advanced algorithms for numerical analysis, linear algebra, cryptography, optimization, and graph theory
Documentation
1
2
3
4
5
6
7
8
9
10
//! Optimization and statistical algorithms
//!
//! This module provides implementations of:
//! - Gradient Descent optimization
//! - Levenberg-Marquardt algorithm for non-linear least squares
//! - Monte Carlo integration

pub mod gradient_descent;
pub mod levenberg_marquardt;
pub mod monte_carlo;