Institut de Robòtica i Informàtica Industrial

get

PURPOSE ^

Get function for CS_CO_POMDPs.

SYNOPSIS ^

function value=get(P,field)

DESCRIPTION ^

  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

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


Institut de Robòtica i Informàtica Industrial

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