annotate toolboxes/FullBNT-1.0.7/KPMstats/gaussian_prob.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 function p = gaussian_prob(x, m, C, use_log)
Daniel@0 2 % GAUSSIAN_PROB Evaluate a multivariate Gaussian density.
Daniel@0 3 % p = gaussian_prob(X, m, C)
Daniel@0 4 % p(i) = N(X(:,i), m, C) where C = covariance matrix and each COLUMN of x is a datavector
Daniel@0 5
Daniel@0 6 % p = gaussian_prob(X, m, C, 1) returns log N(X(:,i), m, C) (to prevents underflow).
Daniel@0 7 %
Daniel@0 8 % If X has size dxN, then p has size Nx1, where N = number of examples
Daniel@0 9
Daniel@0 10 if nargin < 4, use_log = 0; end
Daniel@0 11
Daniel@0 12 if length(m)==1 % scalar
Daniel@0 13 x = x(:)';
Daniel@0 14 end
Daniel@0 15 [d N] = size(x);
Daniel@0 16 %assert(length(m)==d); % slow
Daniel@0 17 m = m(:);
Daniel@0 18 M = m*ones(1,N); % replicate the mean across columns
Daniel@0 19 denom = (2*pi)^(d/2)*sqrt(abs(det(C)));
Daniel@0 20 mahal = sum(((x-M)'*inv(C)).*(x-M)',2); % Chris Bregler's trick
Daniel@0 21 if any(mahal<0)
Daniel@0 22 warning('mahal < 0 => C is not psd')
Daniel@0 23 end
Daniel@0 24 if use_log
Daniel@0 25 p = -0.5*mahal - log(denom);
Daniel@0 26 else
Daniel@0 27 p = exp(-0.5*mahal) / (denom+eps);
Daniel@0 28 end