Institut de Robòtica i Informàtica Industrial

Value

PURPOSE ^

Evaluates a GMixture.

SYNOPSIS ^

function v=Value(gm,x)

DESCRIPTION ^

   Evaluates a GMixture.

   Evaluates the Gaussian mixture 'gm' on a given point, 'x'.

CROSS-REFERENCE INFORMATION ^

This function calls:
  • Value Evaluates a GMixture.
  • Value Evaluation of a Gaussian.
This function is called by:

SOURCE CODE ^

0001 function v=Value(gm,x)
0002 %   Evaluates a GMixture.
0003 %
0004 %   Evaluates the Gaussian mixture 'gm' on a given point, 'x'.
0005   v=0;
0006   for i=1:gm.n
0007     v=v+gm.w(i)*Value(gm.g{i},x);
0008   end
0009


Institut de Robòtica i Informàtica Industrial

Generated on Wed 05-Aug-2009 15:05:21 by m2html © 2003