Problem 42588. Derivative function
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 -1Derivative of sin is cos, cos([0 pi]) = [1 -1]
Hint(Added 2015/9/17): https://en.wikipedia.org/wiki/Numerical_differentiation
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers11
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2809 Solvers
-
448 Solvers
-
Split a string into chunks of specified length
2044 Solvers
-
Implement a bubble sort technique and output the number of swaps required
377 Solvers
-
348 Solvers
More from this Author8
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!