Question: What is the best way to refer to Mapel output in a ()() construct?

I was searching for an “uneval” command that returns an expression unevaluated (as Maple returns an output). In the attached example I am using eval which works in this instance since the integral is entered in an inert form.
 

Int(1/sqrt(x), x)

Int(1/x^(1/2), x)

(1)

(eval = value)(Int(1/x^(1/2), x))

Int(1/x^(1/2), x) = 2*x^(1/2)

(2)

NULL


Since the use of eval to obtain something unevaluated is somehow confusing (and might not work in all instances): Is there a better way than to use eval?

Download expr_equals_evalexpr.mw

Please Wait...