how is it possible in MathSkript to substitute a variable with the actual value in an expression? To be more specific, I want to do in principle the following:
% this works f='x+y' ezsurf(f)
% then I want to multiply y by a factor scale=100 f='x+y*scale' ezsurf(f) % which then fails.