![]() |
ExpectationPURPOSE
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:
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 |