-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathnegbin_lpdf.m
51 lines (48 loc) · 1.59 KB
/
negbin_lpdf.m
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
41
42
43
44
45
46
47
48
49
50
51
function y = negbin_lpdf(x,l,r)
%NEGBIN_LPDF Negative binomial log probability density function
%
% Description
% Y = NEGBIN_LPDF(X,L,R) returns the log of Negative binomial
% probability density function with location parameter L and
% dispersion parameter R (0<R<infty).
%
% Negative binomial has different parameterizations and we use the form
% p(x|l,r) = (r/(r+l))^r * gamma(r+y)/(gamma(r)*gamma(y+1))
% * (l/(r+l))^y
% which approaches Poisson distribution when R goes to infinity.
%
% The size of Y is the common size of X, L and R. A scalar input
% functions as a constant matrix of the same size as the other input.
%
% Note that the density function is zero unless X is an integer.
%
% See also NEGBIN_PDF
%
% Copyright (c) 2010 Jarno Vanhatalo
% Copyright (c) 2010-2011 Aki Vehtari
% This software is distributed under the GNU General Public
% License (version 3 or later); please refer to the file
% License.txt, included with the software, for details.
if isscalar(r) && isscalar(l)
if l<0
y = repmat(NaN,size(x));
else
y = repmat(-Inf,size(x));
end
if l==0
y(x==0) = 0;
elseif l>0
k = (x >= 0 & x == round(x));
if (any(k))
y(k)=r.*(log(r) - log(r+l)) + gammaln(r+x(k)) - gammaln(r) - gammaln(x(k)+1) + x(k).*(log(l) - log(r+l));
end
end
else
y = repmat(-Inf,size(x));
y(l < 0) = NaN;
y(x==0 & l==0) = 0;
k = (x >= 0 & x == round(x) & l > 0);
if (any(k))
y(k)=r(k).*(log(r(k)) - log(r(k)+l(k))) + gammaln(r(k)+x(k)) - gammaln(r(k)) - gammaln(x(k)+1) + x(k).*(log(l(k)) - log(r(k)+l(k)));
end
end