v0.3.1 - Maintenance Release
π§ Maintenance Release
What's Changed
- π§Ή Repository maintenance and cleanup
- π Documentation improvements
- β¨ Clean commit history for better maintainability
Installation
[dependencies]
mathcore = "0.3.1"Quick Start
use mathcore::MathCore;
let math = MathCore::new();
// Symbolic differentiation
let derivative = MathCore::differentiate("x^3 + 2*x", "x").unwrap();
println!("d/dx(x^3 + 2*x) = {}", derivative);
// Solve equations
let roots = MathCore::solve("x^2 - 5*x + 6", "x").unwrap();
println!("Roots: {:?}", roots);
// Evaluate expressions
let result = math.calculate("2 * pi * 5").unwrap();
println!("2Ο Γ 5 = {}", result);Full Changelog: v0.3.0...v0.3.1
π¦ Crates.io: https://crates.io/crates/mathcore
π Documentation: https://docs.rs/mathcore
β Star us on GitHub!