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.
- Host: GitHub
- URL: https://github.com/omaraflak/math-expression-parser
- Owner: omaraflak
- Created: 2018-07-23T01:11:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-24T19:02:06.000Z (over 7 years ago)
- Last Synced: 2025-02-12T03:20:01.815Z (about 1 year ago)
- Topics: math-parser
- Language: C++
- Homepage:
- Size: 465 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```