Simple Math Parser is capable to parse common mathematical expression with arithmetic operators, parameters, constants and functions, and to evaluate it or compile into a Func<>.
Here are examples of what input it can parse: C# Edit|Remove csharp1+2-3*4/5^6**7 1+2-3*4/5^6**7 C# Edit|Remove csharpsin(x)+cos(t)-tan(y) sin(x)+cos(t)-tan(y) |