is there any inbuilt c# function to simplify an equation?
not for solving equation.
input something like (X *5/100+200+211)+(5*10+50+100)+200+300
output like (X*5/100+411)+700
not for solving equation.
input something like (X *5/100+200+211)+(5*10+50+100)+200+300
output like (X*5/100+411)+700
Jignesh TrivediPosted Jun 7, 2013, 7:22 AM
hi,
agree with above two answer.
please check following links it might help you.
http://www.codeproject.com/Articles/7335/An-extensible-math-expression-parser-with-plug-ins
http://cory.geesaman.com/2012/11/mathematica-equation-compressor-and-c-converter/
http://othercontrols.com/en/products/mathexpressioneditorlight/
http://www.algebra.com/services/rendering/simplifier.mpl
Pankaj PandeyPosted Jun 7, 2013, 6:07 AM
I don't think that any inbuilt function is given to solve this type of equestion,
you have to make your own programming code or function .
VulpesPosted Jun 7, 2013, 4:35 AM
You'd have to write a suitable method yourself.