Newer
Older
abgabensammlungSS15 / mr / ub9 / loc_framework / ukf_prediction.m
@Jan-Peter Hohloch Jan-Peter Hohloch on 23 Jun 2015 210 bytes MR: Exercise
function [ newmean, newcov ] = ukf_prediction( mean, cov, u, R, motion)
%UKF_PREDICTION Computes the UKF prediction step- 

% YOUR CODE STARTS HERE:

newmean = mean;
newcov = cov;

% YOUR CODE ENDS HERE:

end