When I write the expression for the partial derivative of a function, diff(f(x_1,x_2),x_1,1)
, for a function f
created with funmake(f,[x_1,x_2])
, the returned output is
However, when copying and pasting the output of the partial derivative, what I get instead is 'diff(f(x_1,x_2))
, which stands for the total derivative of the function f
instead of the partial derivative:
Since total and partial derivatives are not the same thing, this is inappropriate. What is the reason for this behavior? How could it be fixed?