- the name of the function fun is different from myfun
- fun and its gradient are both evaluated at x.
How to use the Finite Difference Method to get the gradient?
29 次查看(过去 30 天)
显示 更早的评论
Hi there,
I need to calculate the gradient (partial derivative) of a function. I found that Matlab has got a '.p' file/function called 'finitedifferences' to do this.
However, I am not sure how to use it. For example, I found that Matlab do it like,
[gradFd,~,~,numEvals] = finitedifferences(x,funfcn{3},[],[],[],f,[],[], ...
1:numberOfVariables,finDiffOpts,sizes,gradFd,[],[],finDiffFlags,[],varargin{:});
but what is funfcn{3} here?
Suppose I have a simple function like,
function F = myfun(x)
F = sin(x) + 3;
in which, x is a vector contains 6 elements. Then how to use the finitedifferences to get the gradient w.r.t each of this 6 elements? Thanks very much!
wbr, Aaron
0 个评论
采纳的回答
Andrew Newell
2011-5-20
Here is an example of a function that uses gradest correctly:
function [F, g] = myfun(x)
fun = @(y) 2*sum(sin(y)) + 3;
F = fun(x);
g = gradest(fun,x);
The key differences are:
Also, I have made it more efficient in a couple of other ways. Now you can test this directly using:
x = rand(4,1);
ganalytic = 2*cos(x)'; % This is the analytic gradient
[F,g] = myfun(x);
max(abs(g-ganalytic))
The last line tells you the maximum difference between the analytic and numerical gradients.
0 个评论
更多回答(6 个)
Andrew Newell
2011-5-20
That looks like an awkward way of doing it. I recommend downloading Adaptive Robust Numerical Differentiation from the FEX.
EDIT: Note that this package has functions for calculating gradient and Hessian.
0 个评论
Aaronne
2011-5-20
3 个评论
Arnaud Miege
2011-5-23
I think that's because your function myfun outputs a scalar and gradient needs a vector of values to work out what the gradient is at each point:
>> [F, g] = myfun([1 2 3 4])
F =
5.2702
g =
0
Aaronne
2011-5-20
2 个评论
Andrew Newell
2011-5-20
You get a recursion error because MYFUN is calling itself instead of the function F. Instead of using derivest, you should use gradest from the same package (see the edit to my answer above).
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!