In Python, I do some SymPy calculations that yield an array full of polynomials in the variables a, b, c, d, e and f such as: array([b*d*e*f, 0, 0, d**3*e, b*d*
Is it possible to make a delta operator like this in sympy? Im not really sure how to code it. Should be really eazy if there exists a method.
I want to defining the following function: def f(x,y): return pow(x, 1/3) + y x = np.linspace(-1, 1, 10) y = np.linspace(-1, 1, 10) X, Y = np.meshgrid(x,