dynare/matlab/missing/stats/gamrnd.m

127 lines
3.8 KiB
Matlab
Raw Normal View History

function rnd = gamrnd(a, b, method)
% This function produces independent random variates from the Gamma distribution.
%
2017-05-16 15:10:20 +02:00
% INPUTS
% - a [double] n*1 vector of positive parameters.
% - b [double] n*1 vector of positive parameters.
% - method [struct] Specifies which algorithms must be used.
%
2017-05-16 15:10:20 +02:00
% OUTPUT
% - rnd [double] n*1 vector of independent variates from the gamma(a,b) distribution.
% rnd(i) is gamma distributed with mean a(i)b(i) and variance a(i)b(i)^2.
2017-05-16 15:10:20 +02:00
%
% REMARKS
% The third input is a structure with two fields named `large` and `small`.
% These fields define the algorithms to be used if a>1 (large) or a<1 (small).
% Copyright (C) 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 <http://www.gnu.org/licenses/>.
%>
%> Set defaults
%> ------------
if nargin<2
b = ones(size(a));
end
if nargin<3
method = struct('large', 'Cheng', 'small', 'Johnk');
end
%>
%> Check inputs
%> ------------
[ma,na] = size(a);
[mb,nb] = size(b);
if ma~=mb || na~=nb
error('gamrnd:: Input arguments must have the same size.');
end
if na~=1
error('gamrnd:: Input arguments must be column vectors.');
end
if (any(a<0)) || (any(b<0)) || (any(a==Inf)) || (any(b==Inf))
error('gamrnd:: Input arguments must be finite and positive.');
end
%>
%> Inititialize output
%> -------------------
rnd = NaN(ma,1);
% Get indices of integer (idx) and non integer (ddx) for the first hyperparameter a.
[~, idx, ddx] = isint(a);
if ~isempty(idx)
% If the first hyperparameter (a) is an integer we can use the
% exponential random number generator or rely in a Gaussian
% approximation.
sdx = find(a(idx)<30);
ldx = find(a(idx)>=30);
if ~isempty(sdx)
% Exact sampling using random deviates from an exponential distribution.
for i=1:length(sdx)
rnd(idx(sdx(i))) = sum(exprnd(ones(a(idx(sdx(i))),1)))*b(idx(sdx(i)));
end
end
if ~isempty(ldx)
% Gaussian approximation.
rnd(idx(ldx)) = sqrt(a(idx(ldx))).* b(idx(ldx)) .* randn(length(ldx), 1) + a(idx(ldx)) .* b(idx(ldx));
end
end
if ~isempty(ddx)
% The first hyperparameter is not an integer.
sdx = find(a(ddx)<1); % Indices for small a.
ldx = find(a(ddx)>1); % Indices for large a.
if ~isempty(sdx)
switch method.small
case 'Weibull-rejection'
rnd(ddx(sdx)) = gamrnd.weibull_rejection(a(ddx(sdx)),b(ddx(sdx)));
case 'Johnk'
rnd(ddx(sdx)) = gamrnd.johnk(a(ddx(sdx)),b(ddx(sdx)));
case 'Berman'
rnd(ddx(sdx)) = gamrnd.berman(a(ddx(sdx)),b(ddx(sdx)));
case 'Ahrens-Dieter'
rnd(ddx(sdx)) = gamrnd.ahrens_dieter(a(ddx(sdx)),b(ddx(sdx)));
case 'Best'
rnd(ddx(sdx)) = gamrnd.best_1983(a(ddx(sdx)),b(ddx(sdx)));
otherwise
error('Unknown algorithm for gamrnd.')
end
end
if ~isempty(ldx)
switch method.large
case 'Knuth'
rnd(ddx) = gamrnd.knuth(a(ddx),b(ddx));
case 'Best'
rnd(ddx(ldx)) = gamrnd.best_1978(a(ddx(ldx)),b(ddx(ldx)));
case 'Cheng'
rnd(ddx(ldx)) = gamrnd.cheng(a(ddx(ldx)),b(ddx(ldx)));
otherwise
error('Unknown algorithm for gamrnd.')
end
end
end