Download this file

1 lines (1 with data), 901 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
function [f,g,H] = autoHess(x,useComplex,funObj,varargin)
% Numerically compute Hessian of objective function from gradient values
p = length(x);
if useComplex % Use Complex Differentials
mu = 1e-150;
diff = zeros(p);
for j = 1:p
e_j = zeros(p,1);
e_j(j) = 1;
[f(j) diff(:,j)] = funObj(x + mu*i*e_j,varargin{:});
end
f = mean(real(f));
g = mean(real(diff),2);
H = imag(diff)/mu;
else % Use finite differencing
mu = 2*sqrt(1e-12)*(1+norm(x))/norm(p);
[f,g] = funObj(x,varargin{:});
diff = zeros(p);
for j = 1:p
e_j = zeros(p,1);
e_j(j) = 1;
[f diff(:,j)] = funObj(x + mu*e_j,varargin{:});
end
H = (diff-repmat(g,[1 p]))/mu;
end
% Make sure H is symmetric
H = (H+H')/2;
if 0 % DEBUG CODE
[fReal gReal HReal] = funObj(x,varargin{:});
[fReal f]
[gReal g]
[HReal H]
pause;
end