Hi XML gurus
I want to know how to solve linear equations using XSLT. I am sending you sample XML below. Please help me or send me link to solve it in XSLT. I want to write XSLT that solves linear equation.
<?xmlversion=â1.0âencoding=âUTF#8722;8â? >
<linearEquationxmlns:xsi=â
http://www.w3.org/2001/XMLSchema#8722;instanceâ
xsi:noNamespaceSchemaLocation=â>
<LHS>
<row>
<entry value=â0.0â />
<entry value=â1.0â />
</row>
<row>
<entry value=â1.0â />
<entry value=â2.0â />
</row>
</LHS>
<RHS>
<entry value=â5.3â />
<entry value=â2.8â />
</RHS>
</linearEquation>