dynare/matlab/missing/stats/+gamrnd/cheng.m

59 lines
1.7 KiB
Matlab

function g = cheng(a, b)
% Returns gamma variates, see Devroye (1986) page 413 and Cheng (JRRS, 1977).
%
% INPUTS
% - a [double] n*1 vector, first hyperparameter.
% - b [double] n*1 vector, second hyperparameter.
%
% OUTPUTS
% - g [double] n*1 vector, gamma variates.
%
% REMARKS
% The definition of aa is wrong in Devroye (1986).
% Copyright © 2006-2018 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 <https://www.gnu.org/licenses/>.
nn = length(a);
mm = nn;
aa = 1./sqrt(2*a-1);
bb = a-log(4);
cc = a+sqrt(2*a-1);
UV = NaN(nn,2);
Y = NaN(nn,1);
X = NaN(nn,1);
Z = NaN(nn,1);
R = NaN(nn,1);
index = 1:nn;
while mm
UV(index,:) = rand(mm,2);
Y(index) = aa(index).*log(UV(index,2)./(1-UV(index,2)));
X(index) = a(index).*exp(Y(index));
Z(index) = UV(index,1).*UV(index,2).*UV(index,2);
R(index) = bb(index) + cc(index).*Y(index)-X(index);
% Update the vector of indices, only keeping the rejected Xs.
index = index(R(index)+2.504077396776274-4.5*Z(index)<0);
if ~isempty(index)
% Update the vector of indices, only keeping the rejected Xs.
index = index(R(index)<log(Z(index)));
end
mm = length(index);
end
g = X.*b;