Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenSouce C/C++ Math expression parser Library [closed]

Tags:

c++

math

I'm searching for a good open source Math Library which can do things like:

  • Parse math. expressions "1+1*(3/5)"
  • Integration

Does anybody know something like this?

like image 653
murtek Avatar asked Nov 01 '10 17:11

murtek


1 Answers

There's also GNU libmatheval, which does evaluation and differentiation. Integration is a much harder problem, even for innocent-looking integrands.

like image 184
lhf Avatar answered Sep 21 '22 15:09

lhf