Returns the action model for a given action.
Returns the action model when the action is is fixed to 'a'.
The output is a Gaussian with the mean and covariance given in the
CS_DA_ActionModel constructor.
See also CS_DA_ActionModel.
0001 function p=GetActionModelFixedA(AM,a)
0002 % Returns the action model for a given action.
0003 %
0004 % Returns the action model when the action is is fixed to 'a'.
0005 % The output is a Gaussian with the mean and covariance given in the
0006 % CS_DA_ActionModel constructor.
0007 %
0008 % See also CS_DA_ActionModel.
0009
0010 % Gaussian in the displacement
0011 p=AM.gA{a};
0012