Alpha-element for the first Perseus iteration (discrete state version).
SYNOPSIS
function a=Alpha0(P)
DESCRIPTION
Alpha-element for the first Perseus iteration (discrete state version).
Generates the alpha element for initial planning horizion when working
with discrete state spaces.
The role of alpha_0 is detailed in Section 4, page 13, first paragraph.
0001 function a=Alpha0(P)
0002 % Alpha-element for the first Perseus iteration (discrete state version).
0003 %
0004 % Generates the alpha element for initial planning horizion when working
0005 % with discrete state spaces.
0006 % The role of alpha_0 is detailed in Section 4, page 13, first paragraph.
0007
0008 S=get(P,'StateSpace');
0009 gamma=get(P,'gamma');
0010 [u v]=UniformDistribution(S);
0011 a=(minReward(P)/(1-gamma))*(1/v)*u;
0012