#math-expression #evaluation #parser #algebra #expression

aloe-math-expression

Aloe Math Expression is a Rust crate for parsing and evaluating mathematical expressions. It supports arithmetic operations, functions, and symbol resolution. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#31 in #math-expression


Used in 2 crates (via aloe-ex-plugins)

GPL-3.0 license

645KB
7K SLoC

Aloe Math Expression

Aloe Math Expression is a Rust crate designed to provide a robust mechanism for parsing and evaluating mathematical expressions. Specifically crafted for numerical and symbolic computations, it supports a range of arithmetic operations, named symbols, and function calls within expressions. The library facilitates complex expression manipulations and evaluations with the support for custom symbol resolution and function execution through the ExpressionScopeInterface.

Features

  • Expression Parsing: Constructs expressions from C-style strings, interpreting numeric constants, symbols, and functions.
  • Expression Evaluation: Dynamically evaluate expressions with support for basic arithmetic (+, -, *, /), common functions (e.g., sin, cos, min, max), and custom symbol resolution.
  • Symbol and Scope Management: Ability to rename symbols, and determine symbol dependencies within an expression context.
  • Advanced Operations: Arithmetic operations, function creation, and inverse expression evaluation to achieve target results.

Getting Started

Add the following to your Cargo.toml file to start using the crate:

[dependencies]
aloe-math-expression = "0.1.0"

Usage

use aloe_math_expression::{Expression, ExpressionScopeInterface};

fn main() {
    let mut err = String::new();
    let expr = Expression::new("3 + sin(x)", &mut err);
    if err.is_empty() {
        println!("Parsed expression: {}", expr.to_string());
    } else {
        println!("Error occurred: {}", err);
    }
}

Documentation

For more detailed instructions and examples, please refer to the documentation.

License

This project is licensed under the GPL-3.0 License.


This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–23MB
~372K SLoC