peroxide 0.41.2

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with familiar syntax
Documentation
1
2
3
4
5
6
7
use peroxide::fuga::{LambertWAccuracyMode::*, *};

#[test]
fn lambert_w_test() {
    assert_eq!(lambert_w0(1.0, Precise), 0.567143290409784);
    assert!(nearly_eq(lambert_w0(1.0, Simple), 0.567143290409784));
}