Given a function handle f, generate a function that evaluates the derivative of f

Examples:

   f = @sin;
   df = Derivative(f);
   df([0 pi])
   ans =
        1    -1

Derivative of sin is cos, cos([0 pi]) = [1 -1]

Hint(Added 2015/9/17): https://en.wikipedia.org/wiki/Numerical_differentiation

Solution Stats

154 Solutions

11 Solvers

Last Solution submitted on Jul 05, 2023

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...