minReward Lower bound of the minimal possible reward.
minReward Lower bound of the minimal possible reward.
SOURCE CODE
0001 function v=get(gb,field)
0002 % Get for GBeliefs.
0003 %
0004 % get function for Gaussian-based beliefs.
0005 %
0006 % See also GBelief.
0007
0008 switch field
0009 case'maxC'
0010 v=gb.maxC;
0011
0012 otherwise
0013 v=get(gb.GMixture,field);
0014 end
0015