MATLAB: How to divide anonymous functions

anonymous functionsnewton raphson

I have two anonymous functions and need to divide them for the Newton-Raphson method without using the "divder" function handle. Entering f/df displays an error
f = @x x^3
df = @x 3*(x^2)

Best Answer

But what does this do?

@(x) f(x)./df(x)