dynare/matlab/hess_element.m

78 lines
2.3 KiB
Matlab
Raw Normal View History

function d=hess_element(func,arg1,arg2,elem1,elem2,args)
% function d=hess_element(func,arg1,arg2,elem1,elem2,args)
2010-02-22 17:33:38 +01:00
% returns an entry of the finite differences approximation to the hessian of func
%
% INPUTS
% func [function name] string with name of the function
% arg1 [int] the indices showing the element within the hessian that should be returned
% arg2 [int]
% elem1 [int] vector index 1
% elem2 [int] vector index 2
2010-02-22 17:33:38 +01:00
% args [cell array] arguments provided to func
%
% OUTPUTS
% d [double] the (arg1,arg2) entry of the hessian
2010-02-22 17:33:38 +01:00
%
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2010-2020 Dynare Team
2010-02-22 17:33:38 +01:00
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
assert(arg1 <= length(args) && arg2 <= length(args));
func = str2func(func);
h=1e-6;
2010-02-22 17:33:38 +01:00
p10 = args;
p01 = args;
m10 = args;
m01 = args;
p11 = args;
m11 = args;
p10{arg1}(elem1) = p10{arg1}(elem1) + h;
m10{arg1}(elem1) = m10{arg1}(elem1) - h;
2010-02-22 17:33:38 +01:00
p11{arg1}(elem1) = p11{arg1}(elem1) + h;
m11{arg1}(elem1) = m11{arg1}(elem1) - h;
2010-02-22 17:33:38 +01:00
p01{arg2}(elem2) = p01{arg2}(elem2) + h;
m01{arg2}(elem2) = m01{arg2}(elem2) - h;
p11{arg2}(elem2) = p11{arg2}(elem2) + h;
m11{arg2}(elem2) = m11{arg2}(elem2) - h;
2010-02-22 17:33:38 +01:00
% From Abramowitz and Stegun. Handbook of Mathematical Functions (1965)
% formulas 25.3.24 and 25.3.27 p. 884
if arg1==arg2
2010-02-22 17:33:38 +01:00
d = (16*func(p10{:})...
2011-02-04 17:17:48 +01:00
+16*func(m10{:})...
-30*func(args{:})...
-func(p11{:})...
-func(m11{:}))/(12*h^2);
2010-02-22 17:33:38 +01:00
else
d = (func(p10{:})...
2011-02-04 17:17:48 +01:00
+func(m10{:})...
+func(p01{:})...
+func(m01{:})...
-2*func(args{:})...
-func(p11{:})...
-func(m11{:}))/(-2*h^2);
2010-02-22 17:33:38 +01:00
end
end