Expression(string: ) not parsing correct result in DDMathParser

42 Views Asked by At
expressions[2] = "$x**3/3+$x*$z**2+2*($x**2-$z**2)"

let mathParserExpression2 = try Expression(string: expressions[2])

results in $x ** 3.0 ÷ 3.0 + $x * $z ** 2.0 + 2.0 * $x ** 2.0 − $z ** 2.0

What to do?

Even

expressions[2] = "$x**3/3+$x*$z**2+2($x**2-$z**2)"

produces same effect. Checked this in your Tests and fails to create required expression.

1

There are 1 best solutions below

0
On

Checked using Demo app with the expression and I get correct results. Didn't get the 3D shape I expected, so troubleshooting initially led me astray.