syms x y
f = x*y*(x^2-y^2)/(x^2+y^2)
fx = diff(f,x) %关于x求导
fx = simplify(fx)
fxy = diff(fx,y)
fxy = simplify(fxy)