normal_coef.m
Upload User: mozhenmi
Upload Date: 2008-02-18
Package Size: 13k
Code Size: 0k
Development Platform:

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);