nacfahi 0.5.1

Simpler, but less error-prone API for `levenberg-marquardt` optimization crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
crate::test_model_derivative!(
    Polynomial::<5, f64>,
    Polynomial {
        params: [-4.0, -15.0, -2.0, 0.7, -0.01]
    },
    [
        (0.0, -1.0),
        (1.0, -4.0),
        (2.0, -5.0),
        (3.0, 6.0),
        (4.0, 2.0),
        (5.0, 2.5)
    ]
);