Prediction
PURPOSE 
Belief evolution given a transition model.
SYNOPSIS 
function bOut=Prediction(b,t,Sp)
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
- rand Random state from a discrete belief.
- get Get for GBeliefs.
- rand Random state from a belief.
- get Get function for the GMixture object.
- rand Generates random points on a GMixture.
- get Gaussian object get function.
- rand Generates random ponts on a Gaussian.
- 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.
- rand Random state from a continuous space.
- rand Random state from a discrete space.
This function is called by:
SOURCE CODE 
0001 function bOut=Prediction(b,t,Sp)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 bOut=b;
0016
0017 bOut.noiselessMovedSamples=bOut.samples+repmat(get(t,'mean'),1,bOut.np);
0018 bOut.noise=get(t,'covariance');
0019 for i=1:b.np
0020 bOut.samples(:,i)=rand(t+bOut.samples(:,i));
0021 end
0022
0023
0024
|