You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Argument x = new Argument("x = 3");
Argument n = new Argument("n = 1");
Expression e = new Expression("nx", n, x);
mXparser.consolePrintln(e.getExpressionString() + " = " + e.getCanonicalExpressionString());
Result is ok: nx = n*x
Argument x = new Argument("x = 3");
Argument n = new Argument("n = 1");
Expression e = new Expression("n x", n, x);
mXparser.consolePrintln(e.getExpressionString() + " = " + e.getCanonicalExpressionString());
Result is not ok - missing multiplication n x = nx
The text was updated successfully, but these errors were encountered:
Result is ok:
nx = n*x
Result is not ok - missing multiplication
n x = nx
The text was updated successfully, but these errors were encountered: