Skip to content
Snippets Groups Projects
Commit 01db13d7 authored by sebastien's avatar sebastien
Browse files

4.0: merged r2119 changeset (fixed copyright headers of generalized_cholesky?.m files)

git-svn-id: https://www.dynare.org/svn/dynare/branches/4.0@2202 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 430e82d9
No related branches found
Tags
No related merge requests found
% proc gmchol(A);
% /* calculates the Gill-Murray generalized choleski decomposition */
% /* input matrix A must be non-singular and symmetric */
% /* Author: Jeff Gill. Part of the Hessian Project. */
% local i,j,k,n,sum,R,theta_j,norm_A,phi_j,delta,xi_j,gamm,E,beta_j;
function AA = generalized_cholesky(A);
%function AA = generalized_cholesky(A);
%
% Calculates the Gill-Murray generalized choleski decomposition
% Input matrix A must be non-singular and symmetric
% Copyright (C) 2003 Dynare Team
%
% 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/>.
n = rows(A);
R = eye(n);
......
% /*
% ** By Jeff Gill, April 2002.
% **
% ** This procedure produces:
% **
% ** y = chol(A+E), where E is a diagonal matrix with each element as small
% ** as possible, and A and E are the same size. E diagonal values are
% ** constrained by iteravely updated Gerschgorin bounds.
% **
% ** REFERENCES:
% **
% ** Jeff Gill and Gary King. 1998. "`Hessian not Invertable.' Help!"
% ** manuscript in progress, Harvard University.
% **
% ** Robert B. Schnabel and Elizabeth Eskow. 1990. "A New Modified Cholesky
% ** Factorization," SIAM Journal of Scientific Statistical Computating,
% ** 11, 6: 1136-58.
% **
% **
% **
% ** Stphane Adjemian (2003): translation from Gauss to Matlab.
% */
function AA = generalized_cholesky2(A)
%function AA = generalized_cholesky2(A)
%
% This procedure produces:
%
% y = chol(A+E), where E is a diagonal matrix with each element as small
% as possible, and A and E are the same size. E diagonal values are
% constrained by iteravely updated Gerschgorin bounds.
%
% REFERENCES:
%
% Jeff Gill and Gary King. 1998. "`Hessian not Invertable.' Help!"
% manuscript in progress, Harvard University.
%
% Robert B. Schnabel and Elizabeth Eskow. 1990. "A New Modified Cholesky
% Factorization," SIAM Journal of Scientific Statistical Computating,
% 11, 6: 1136-58.
% Copyright (C) 2003 Dynare Team
%
% 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/>.
n = size(A,1);
L = zeros(n,n);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment