Institut de Robòtica i Informàtica Industrial

rand

PURPOSE ^

Random state from a continuous space.

SYNOPSIS ^

function v=rand(CS)

DESCRIPTION ^

   Random state from a continuous space.

   Generates a random point in the bounds of the given continuous space
   sampling with uniform probability.

CROSS-REFERENCE INFORMATION ^

This function calls:
  • rand Random state from a discrete belief.
  • rand Random state from a belief.
  • rand Generates random points on a GMixture.
  • rand Generates random ponts on a Gaussian.
  • rand Random state from a continuous space.
  • rand Random state from a discrete space.
This function is called by:
  • Prediction Belief evolution under the given action.
  • Prediction Belief evolution under the given action.
  • Prediction Belief evolution given a transition model.
  • Update Belief evolution under an observation model.
  • MakeFigure3 Generates Figure 3.
  • CompressGR Gaussian mixture compression using the Golberger and Roweis method.
  • rand Generates random points on a GMixture.
  • RandVector Selects and element from a discrete probability distribution.
  • CS_CO_ObsModel CS_CO_ObsModel constructor.
  • CS_DO_ObsModel CS_DO_ObsModel constructor.
  • DiscretizeObsModel Discretizes the observation model on the observation side.
  • Perseus The Perseus point-based POMDP solver.
  • RandomAction Draws a random action from a POMDP.
  • SampleBeliefs Samples a set of beliefs from a POMDP.
  • SimulateFrom Simulates a POMDP from a given belief.
  • SimulationStep Executes one step of a POMDP simulation.
  • iPerseus Improved version of Perseus.
  • Discretize Converts a continuous space into a discrete one.
  • rand Random state from a continuous space.
  • rand Random state from a discrete space.

SOURCE CODE ^

0001 function v=rand(CS)
0002 %   Random state from a continuous space.
0003 %
0004 %   Generates a random point in the bounds of the given continuous space
0005 %   sampling with uniform probability.
0006 %
0007   v=CS.min+rand(CS.dim,1).*CS.range;
0008


Institut de Robòtica i Informàtica Industrial

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