Though I ve looked through several pages documenting various differentiation tools in Julia, I have yet to find the following simple functionality. I want to define a function which is differentiable by hand, e.g, f(x) = 2x^3
, then call a symbolic computation function to obtain fprime = derivative(f)
. This code should produce the same results as fprime(x) = 6x^2
. Is there a library function which acts like the made-up function derivative
above?
Though I ve looked through several pages documenting various differentiation tools in Julia, I have yet to find the following simple functionality. I want to define a function which is differentiable ...