I have the following xml file:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<eq1>-3.874999999999* Math.pow(x, 4.0) + 48.749999999993* Math.pow(x, 3.0)</eq1>
<eq2>-0.166666666667* Math.pow(x, 4.0) + 2.166666666667* Math.pow(x, 3.0)</eq2>
</root>
I would like to parse these 2 equations and place them in variables for further calculations. The method I'm using currently is parsing them and placing them in a string, but it won't work as I need to perform the calculations using the equations.
Is there a better method I can use to work around this? Thanks in advance.