Institut de Robòtica i Informàtica Industrial

get

PURPOSE ^

Get function for CS_POMDPs.

SYNOPSIS ^

function value=get(P,field)

DESCRIPTION ^

  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.

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_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


Institut de Robòtica i Informàtica Industrial

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