Get function for CS_CO_POMDPs.
Get function for POMDP on continuous state spaces but on discrete action
and observation spaces.
Possible fields to query are
- nSampledObs
- Any filed defined in higher levels of the POMDP object hierarchy
See also @CS_POMDP/get, @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_CO_POMDPs.
0003 %
0004 % Get function for POMDP on continuous state spaces but on discrete action
0005 % and observation spaces.
0006 % Possible fields to query are
0007 % - nSampledObs
0008 % - Any filed defined in higher levels of the POMDP object hierarchy
0009 %
0010 % See also @CS_POMDP/get, @POMDP/get
0011
0012 switch field
0013 case'nSampledObs'
0014 value=P.nSampledObs;
0015 otherwise
0016 value=get(P.CS_POMDP,field);
0017 end
0018