An open API service indexing awesome lists of open source software.

https://github.com/omaraflak/math-expression-parser

Math expression parser.
https://github.com/omaraflak/math-expression-parser

math-parser

Last synced: 12 months ago
JSON representation

Math expression parser.

Awesome Lists containing this project

README

          

# Math Expression Parser

Parse and evaluate math expression.

```c++
std::cout << Processor::evaluate("x^2 + exp(y)", {{"x", 3}, {"y", 2}}) << std::endl;
```