Get function for CS_POMDPs.
Get function for POMDP on continuous state spaces (independently of the
observation and action space type).
Possible fields to query are
- maxAlphaC: maximum number of components in the alpha elements.
- Any filed defined in higher levels of the POMDP object hierarchy.
See also @POMDP/get.
minReward Lower bound of the minimal possible reward.
minReward Lower bound of the minimal possible reward.
SOURCE CODE
0001 function value=get(P,field)
0002 % Get function for CS_POMDPs.
0003 %
0004 % Get function for POMDP on continuous state spaces (independently of the
0005 % observation and action space type).
0006 %
0007 % Possible fields to query are
0008 % - maxAlphaC: maximum number of components in the alpha elements.
0009 % - Any filed defined in higher levels of the POMDP object hierarchy.
0010 %
0011 % See also @POMDP/get.
0012
0013 switch field
0014 case'maxAlphaC'
0015 value=P.maxAlphaC;
0016 otherwise
0017 value=get(P.POMDP,field);
0018 end
0019