Institut de Robòtica i Informàtica Industrial

Expectation

PURPOSE ^

Expectation between a belief and a alpha-element.

SYNOPSIS ^

function e=Expectation(b,a)

DESCRIPTION ^

   Expectation between a belief and a alpha-element.

   Expectation operator for a belief 'b' on discrete state space and a given
   alpha element 'a' (alpha vector in this case).

   This is the basic operator on which the backup relies on and,
   consequently on which the whole planeer is based on.

CROSS-REFERENCE INFORMATION ^

This function calls:
This function is called by:
  • Values Belief value with all alpha-elements in the Policy.
  • ComputeAlpha_a Compute the alpha_i_n-element for the given action and belief.
  • Backup Backup for a given belief (continuous state version).
  • ComputeAlpha_a Compute the alpha_i_n-element for the given action and belief.
  • Backup Backupt for a given belief (discrete state version).
  • Perseus The Perseus point-based POMDP solver.
  • iPerseus Improved version of Perseus.

SOURCE CODE ^

0001 function e=Expectation(b,a)
0002 %   Expectation between a belief and a alpha-element.
0003 %
0004 %   Expectation operator for a belief 'b' on discrete state space and a given
0005 %   alpha element 'a' (alpha vector in this case).
0006 %
0007 %   This is the basic operator on which the backup relies on and,
0008 %   consequently on which the whole planeer is based on.
0009 
0010   e=b.v'*a;
0011


Institut de Robòtica i Informàtica Industrial

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