symplex 0.28.0

Exact symbolic mathematics for Rust: calculus, summation, solving, linear algebra, transforms, compile-time dimensional analysis, and Rust/C code generation
Documentation
1
2
3
4
5
6
7
8
9
use symplex::prelude::*;
use symplex::units::*;

fn main() {
    let ctx = Context::new();
    let e = Energy::symbol(&ctx, "e");
    let t = Torque::symbol(&ctx, "t");
    let _bad = &e + &t;
}