symplex 0.22.3

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
use symplex::prelude::*;
use symplex::units::*;

fn main() {
    let ctx = Context::new();
    let l = Length::symbol(&ctx, "l");
    let _bad = l.sin();
}