Symbolics.jl
Symbolics.jl copied to clipboard
wrong Jacobian
using Symbolics
@variables x y
z = x+y
Symbolics.jacobian([x*z],[x, z])
Expected [x+y x] Got [y + 2x x]
Differentiating wrt x + y is not supported.
Can we throw an error if an expression is passed?