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

其他小程序

开发平台:

Matlab

  1. function [converged, decrease] = em_converged(loglik, previous_loglik, threshold)
  2. % EM_CONVERGED Has EM converged?
  3. % [converged, decrease] = em_converged(loglik, previous_loglik, threshold)
  4. %
  5. % We have converged if
  6. %   |f(t) - f(t-1)| / avg < threshold,
  7. % where avg = (|f(t)| + |f(t-1)|)/2 and f is log lik.
  8. % threshold defaults to 1e-4.
  9. % This stopping criterion is from Numerical Recipes in C p423
  10. if nargin < 3
  11.   threshold = 1e-4;
  12. end
  13. converged = 0;
  14. decrease = 0;
  15. if loglik - previous_loglik < -1e-3 % allow for a little imprecision
  16.   fprintf(1, '******likelihood decreased from %6.4f to %6.4f!n', previous_loglik, loglik);
  17.   decrease = 1;
  18. end
  19. delta_loglik = abs(loglik - previous_loglik);
  20. avg_loglik = (abs(loglik) + abs(previous_loglik) + eps)/2;
  21. if (delta_loglik / avg_loglik) < threshold, converged = 1; end