I have been given an Excel file. The Excel file has rows in it. The first column of each row has a formula that looks something like this:
'4.75+-3.12*log(x)+1.25*log(x)^2
I need to "load" this formula into C# so that I can do some calculations with it. My question is, if I had the text above, how do I convert it into a mathematical formula I can use in C#? I am successfully reading my Excel file. Yet, I'm not sure how to parse the formula into something I can actually use.