normal_coef.m
上传用户:mozhenmi
上传日期:2008-02-18
资源大小:13k
文件大小:0k
源码类别:

其他小程序

开发平台:

Matlab

  1. function c = normal_coef (Sigma)
  2. %
  3. % c = normal_coef (Sigma)
  4. % Compute the normalizing coefficient for the gaussian.
  5. n = length(Sigma);
  6. c = (2*pi)^(-n/2) * det(Sigma)^(-0.5);