How I do evaluate a function handle in other function handle
Show older comments
I define the next function:
function [v] = f_deriv(f,x,y,n)
%f is a function of two variables
%x,y is a number
%n is the number of proccess that I need to do
p_y=@(f,x,y) (f(x,y+0.0001) - f(x,y-0.0001))/(2*0.0001);
p_x=@(f,x,y) (f(x+0.0001,y) - f(x-0.0001,y))/(2*0.0001);
y_p=f(x,y);
for i=1:n
g=@(x,y) f(x,y)*p_y(f,x,y) + p_x(f,x,y);
f=@(x,y) g(x,y)
end
v=f(x,y)
end
This function has a input f, like
(f=@((x,y) y -x^2 +1), and want to has as output $f^n(x,y)$ (the nth derivative of f, where y depends of x)
(f=@((x,y) y -x^2 +1), and want to has as output $f^n(x,y)$ (the nth derivative of f, where y depends of x)The steps that I follow to solve this problem are:
First, I define the function p_y and p_x that is the partial derivate aproximation of f. (
)
)Next, I define a y_p that is the function f evaluated in (x,y)
And, I define the function g, which is the
(p_x + p_y*y_p)
(p_x + p_y*y_p)Finally, I want to evaluate n times the function g_k in the same function, something like this:

or something like that:
g_1=@(x,y) f(x,y)*p_y(f,x,y) + p_x(f,x,y);
g_2=@(x,y) g_1(x,y)*p_y(g_1,x,y) + p_x(g_1,x,y);
.
.
.
g_n=@(x,y) g_n-1(x,y)*p_y(g_(n-1),x,y) + p_x(g_(n-1),x,y);
But, when I use the code first I have incorrect results for n> 2. I know the algorithm is correct, because when I manually do the process, the results are correct
A example to try the code, is using f_deriv(@((x,y) y -x^2 +1,0,0.5,n), and for n=1, the result that would be correct is 1.5. For n=2,the result that would be correct is -0.5, for n=3. the result that would be correct is -0.5....
Someone could help me by seeing what the errors are in my code?, or does anyone know any better way to calculate partial derivatives without using the symbolic?
1 Comment
Matt J
on 15 Nov 2019
I know the algorithm is correct, because when I manually do the process, the results are correct.
The algorithm is correct analytically, but is not stable numerically.
Answers (4)
Matt J
on 15 Nov 2019
I think this line needs to be
g=@(x,y) f(x,y)*p_y(f,x,y) + p_x(f,x,y);
8 Comments
Matt J
on 15 Nov 2019
Note that coding will be less bug-prone if you avoid reusing the symbols x and y for unrelated things.

capj
on 15 Nov 2019
Matt J
on 15 Nov 2019
I think I see a problem in the fundamental calculus. The derivative of f(x,y) with respect to x is
So, you have to know
, which isn't made available in your code.
capj
on 15 Nov 2019
Matt J
on 15 Nov 2019
OK, but how do we see that the correct result at 0.,0.5, 3 is -0.5? Do we know the closed form of y(x) somehow?
Steven Lord
on 15 Nov 2019
g_1=@(x,y) y_p*p_y(f,x,y) + p_x(f,x,y);
g_2=@(x,y) y_p*p_y(g_1,x,y) + p_x(g_1,x,y);
.
.
.
g_n=@(x,y) y_p*p_y(g_(n-1),x,y) + p_x(g_(n-1),x,y);
g_n(x,y)
Rather than using numbered variables, store your function handles in a cell array. That will make it easier for you to refer to previous functions.
f = @(x) x;
g = cell(1, 10);
g{1} = f;
for k = 2:10
% Don't forget to _evaluate_ the previous function g{k-1} at x
%
% g{k} = @(x) k + g{k-1} WILL NOT work
g{k} = @(x) k + g{k-1}(x);
end
g{10}([1 2 3]) % Effectively this returns [1 2 3] + sum(2:10)
1 Comment
Guillaume
on 15 Nov 2019
0 votes
Your y_p never changes in your function. It's always the original
. Shouldn't y_p be reevaluated at each step?
Your 0.0001 delta is iffy as well. It's ok when you're evaluating the derivative for
but for small x (and y) it's not going to work so well. Should the delta be based on the magnitude of x (and y)?
Matt J
on 15 Nov 2019
0 votes
What you probably have to do is use ode45 or similar to solve the differential equation dy/dx = f(x,y) on some interval. Then, fit f(x,y(x)) with an n-th order smoothing spline. Then, take the derivative of the spline at the point of interest.
4 Comments
capj
on 8 Dec 2019
Matt J
on 8 Dec 2019
Cubic splines have only 3 derivatives, higher order splines have more.
capj
on 8 Dec 2019
I've never used it, but this File Exchange submission advertises spline fitting of any order
It also appears to contain functions for evaluating spline derivatives.
Categories
Find more on Spline Postprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!