This is a Rust library for performing mathematical operations and manipulating equations.
Add the following to your Cargo.toml
file:
toml
[dependencies]
operations = "0.1.1"
```rust use math::{Operation, EquationMember};
fn main() { let operation = Operation::Multiply(vec![ Operation::Value(2.0), Operation::Variable(Rc::new("x")), ]);
println!("{}", operation.equation_repr());
}
// Prints "2.0 * x" ```
Contributions are welcome! Open a PR or issue on GitHub to get started!
This library is licensed under the MIT License.