Python求偏导

from sympy import *
x, m = symbols('x m')
Y = 1 / (1 + x ** 2 + m ** 2)
print(diff(Y, m))

你可能感兴趣的:(Python,数学,数值计算)