📄 ml_gaussian.m
字号:
function index = ML_gaussian(x,mu,sigma)
% function index = ML_gaussian(x,mu,sigma)
% x is a vector drawn from some multivariate gaussian
% mu(i,:) is the mean of the ith Gaussian
% sigma(:,:,i) is the covariance of the ith Gaussian
%
% Returns the index of the Gaussian with the highest value of p(x).
N = size(mu,1); % number of Gaussians
if( N == 0 )
index = 0;
else
for i=1:N,
% leave out factor of 1/(2*pi)^(N/2) since it doesn't affect argmax
p(i) = 1/sqrt(det(sigma(:,:,i)))*exp(-0.5*(x-mu(i,:))*inv(sigma(:,:,i))*(x-mu(i,:))');
end
[m index] = max(p);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -