A Rust library for mathematical expression evaluation and simplification.
%
& exponent **
support;f32
;sin
, cos
& tan
;steps
parameter to break evaluation steps into a Vec<&str>
;Add the following lines to your Cargo.toml
dependencies:
toml
[dependencies]
equation = "0.3.0"
Evaluate basic arithmetic equations and return a i32
.
```rust use equation::evaluate;
fn main() { let result = evaluate("(1 + 2) * (1 + 2)"); // Returns Ok(9) match result { Ok(val) => println!("{}", val), Err(e) => println!("Error: {:?}", e), } } ```
Basic arithematic
rust
evaluate("(1 + 2) * 1 + 2"); // Returns Ok(5)
evaluate("4 * 3"); // Returns Ok(12)
evaluate("8 / 2"); // Returns Ok(4)
evaluate("16 - 4"); // Returns Ok(12)
Negative calculations
Unary operator. Returns the negation of its operand.
rust
evaluate("-4 * 3"); // Returns Ok(-12)
evaluate("-8 / 2"); // Returns Ok(-4)
evaluate("-(4 + 4)"); // Returns Ok(-8)
Exponentation
Calculates the base to the exponent power, base ^ exponent
.
rust
evaluate("2 ^ 8"); // Returns Ok(256)
evaluate("2 exp 9"); // Returns Ok(512)
Modulus
Returns the integer remainder of dividing the two operands.
```rust evaluate("10 % 2"); // Returns Ok(0) evaluate("10 % 4"); // Returns Ok(2) evaluate("10 mod 3"); // Returns Ok(1)
```
Licensed under MIT license (LICENSE-MIT | https://opensource.org/licenses/MIT) or under the Apache 2.0 (LICENSE-APACHE | https://opensource.org/license/apache-2-0/).