-
Notifications
You must be signed in to change notification settings - Fork 54
/
spm_KL_dir.m
38 lines (33 loc) · 1.28 KB
/
spm_KL_dir.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
function [d] = spm_KL_dir(q,p)
% KL divergence between two Dirichlet distributions
% FORMAT [d] = spm_kl_dirichlet(lambda_q,lambda_p)
%
% Calculate KL(Q||P) = <log Q/P> where avg is wrt Q between two Dirichlet
% distributions Q and P
%
% lambda_q - concentration parameter matrix of Q
% lambda_p - concentration parameter matrix of P
%
% This routine uses an efficient computation that handles arrays, matrices
% or vectors. It returns the sum of divergences over columns.
%
% see also: spm_kl_dirichlet.m (for rwo vectors)
%__________________________________________________________________________
% Copyright (C) 2008 Wellcome Trust Centre for Neuroimaging
% Will Penny
% $Id: spm_KL_dir.m 7382 2018-07-25 13:58:04Z karl $
% KL divergence based on log beta functions
%--------------------------------------------------------------------------
d = spm_betaln(p) - spm_betaln(q) - sum((p - q).*spm_psi(q + 1/32),1);
d = sum(d(:));
return
% check on KL of Diriclet ditributions
%==========================================================================
p = rand(6,1) + 1;
q = rand(6,1) + p;
p0 = sum(p);
q0 = sum(q);
d = q - p;
KL = spm_betaln(p) - spm_betaln(q) + d'*spm_psi(q)
kl = gammaln(q0) - sum(gammaln(q)) - gammaln(p0) + sum(gammaln(p)) + ...
d'*(spm_psi(q) - spm_psi(q0))