Dynamic Formula Calculation
For a while now I have wanted to write a dynamic formula engine that could take a math equation sting and resolve it. While researching an unrelated topic I found a bit of code for a "FormulaGenerator" by Tiberiu Ionescu. The code is written for a single thread application, and it works wonderfully in that context. Unfortunately, I need something like it in a web application. I also want to be able to use variables within the formula for example :( 5 * x ) The Formula G...
[More]