This is a question I've asked myself since I began programming again and again.
My goal:
- draw a function graph based on a string like "sin(x-1)*2.5" FAST.
- fast means fast enough to be fun
- it must run on Android
What I tried:
- using my own very simple parser (slow and primitive)
- using the JavaScript parser (slow but flexible)
- using the Janino runtime compiler (fast and flexible, perfect, but only for normal Java)
I've googled extensively (queries like "android function graph how to"), but not found a solution, although there are numerous applications managing to do this.
I will not accept "write your own parser/compiler" :)
SO: How do I do this?
Thank you very much in advance,
Till Höppner
exp4jis Android compatible but might be worth trying out; objecthunter.net/exp4j – harism Jan 21 at 19:34