AUTOmatic Derivatives & Jacobians by djmaxus and you
[x] Single variables
```rust use autodj::single::*;
let x : DualNumber = 2.0.into_variable();
let f = x * x + &1.0.into(); // can be borrowed for arithmetic operations
asserteq!(f.value(), 5.0); asserteq!(f.deriv(), 4.0); assert_eq!(format!("{f}"), "5+4∆"); // fmt::Display resembles Taylor expansion ```
[x] Multiple variables They are based on multiple dual components and don't require 'backward' differentiation to be efficient since each partial derivative is tracked separately from the start
```rust use autodj::array::*;
let vars : DualVariables<2> = [2.0, 3.0].intovariables(); // consistent set of independent variables let [x, y] = vars.get().toowned();
let f = x * (y - 1.0.into());
asserteq!(f.value(), 4.); asserteq!(f.grad() , &[2., 2.]); assert_eq!(format!("{f}"), "4+[2.0, 2.0]∆"); ```
```rust use autodj::vector::*;
let x : DualVariables = vec![1., 2., 3., 4., 5.].into_variables();
let f : DualNumber = x.get().iter().map(|x : &DualNumber| x * &2.0.into()).sum();
asserteq!(f.value(), 30.); f.grad().iter().foreach(|deriv| assert_eq!(deriv, &2.0) ); ```
[x] Generic implementation
rust
use autodj::common::DualCommon; // can be specialized for your needs
I do both academic & business R&D in the area of computational mathematics. As well as many of us, I've written a whole bunch of sophisticated Jacobians by hand.
One day, I learned about automatic differentiation based on dual numbers. Almost the same day, I learned about Rust as well :crab:
Then, I decided to:
You are very welcome to introduce issues to promote most wanted features or to report a bug.
num
nalgebra
etc.)f64
autodiff
As far as I noticed, autodj
currently has the following differences
fmt::Display
for statically-known number of variables.into-variables()
, .eval()
, etc.f64
num
and nalgebra
cratesSome defferences are planned to be eliminated as noted in the roadmap.
Within this crate, you may study & launch test target /tests/autodiff.rs
to follow some differences.
shell
cargo test --test autodiff -- --show-output