Newer
Older
abgabensammlungSS15 / mr / ub9 / loc_framework / pf_prediction.m
@Jan-Peter Hohloch Jan-Peter Hohloch on 23 Jun 2015 210 bytes MR: Exercise
function [ xnew ] = pf_prediction( x, u, R, motion)
%PF_PREDICTION Particle Filter prediction step

% Number of particles:
m = size(x, 3);

% YOUR CODE STARTS HERE:

xnew = x;

% YOUR CODE ENDS HERE:
    
end