![]() |
Alpha0PURPOSE
Alpha-element for the first Perseus iteration (continuos state version).
SYNOPSIS
function a=Alpha0(P)
DESCRIPTION
Alpha-element for the first Perseus iteration (continuos state version). Generates the alpha element for initial planning horizion when working with continuous state spaces. The role of alpha_0 is detailed in Section 4, page 13, first paragraph. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function a=Alpha0(P) 0002 % Alpha-element for the first Perseus iteration (continuos state version). 0003 % 0004 % Generates the alpha element for initial planning horizion when working 0005 % with continuous 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=Compress((minReward(P)/(1-gamma))*(1/v)*u,P.maxAlphaC); 0012 |