Institut de Robòtica i Informàtica Industrial

get

PURPOSE ^

Get function for CS_CO_CA_POMDPs.

SYNOPSIS ^

function value=get(P,field)

DESCRIPTION ^

  Get function for CS_CO_CA_POMDPs.

  Get function for POMDP on continuous state, continuous discrete 
  action and continuous observation spaces.
  Possible fields to query are
    - StateSpace
    - ActionSpace
    - ObsSpace
    - ActionModel
    - ObsModel
    - RewardModel
    - nSampledActions
    - nSampledObs
    - Any filed defined in higher levels of the POMDP object hierarchy

  See also @CS_POMDP/get, @POMDP/get

CROSS-REFERENCE INFORMATION ^

This function calls:
  • get Get for GBeliefs.
  • get Get function for the GMixture object.
  • get Gaussian object get function.
  • get Get function for CS_CO_CA_POMDPs.
  • get Get function for CS_CO_DA_POMDPs.
  • get Get function for CS_CO_POMDPs.
  • get Get function for CS_DO_CA_POMDPs.
  • get Get function for CS_DO_DA_POMDPs.
  • get Get function for CS_POMDPs.
  • get Get function for DS_CO_CA_POMDPs.
  • get Get function for DS_CO_DA_POMDPs.
  • get Get function for DS_DO_CA_POMDPs.
  • get Get function for DS_DO_DA_POMDPs.
  • get Get functio for POMDPs.
This function is called by:

SOURCE CODE ^

0001 function value=get(P,field)
0002 %  Get function for CS_CO_CA_POMDPs.
0003 %
0004 %  Get function for POMDP on continuous state, continuous discrete
0005 %  action and continuous observation spaces.
0006 %  Possible fields to query are
0007 %    - StateSpace
0008 %    - ActionSpace
0009 %    - ObsSpace
0010 %    - ActionModel
0011 %    - ObsModel
0012 %    - RewardModel
0013 %    - nSampledActions
0014 %    - nSampledObs
0015 %    - Any filed defined in higher levels of the POMDP object hierarchy
0016 %
0017 %  See also @CS_POMDP/get, @POMDP/get
0018   switch field
0019     case 'StateSpace'
0020       value=P.S;
0021     case 'ActionSpace'
0022       value=P.A;
0023     case 'ObsSpace'
0024       value=P.O;
0025     case 'ActionModel'
0026       value=P.CS_CA_ActionModel;
0027     case 'ObsModel'
0028       value=P.CS_CO_ObsModel;
0029     case 'RewardModel'
0030       value=P.CS_CA_RewardModel;
0031     case 'nSampledActions'
0032       value=P.nSampledActions;
0033     otherwise
0034       value=get(P.CS_CO_POMDP,field);
0035   end


Institut de Robòtica i Informàtica Industrial

Generated on Wed 05-Aug-2009 15:05:21 by m2html © 2003