SLAM-Course-Solutions icon indicating copy to clipboard operation
SLAM-Course-Solutions copied to clipboard

Solutions to assignments for Robot Mapping / SLAM Course WS 2013/14, Uni of Freiburg. Please see to linked website and README for YouTube videos & further resources.

Results 2 SLAM-Course-Solutions issues
Sort by recently updated
recently updated
newest added

@varunbachalli highlighted in #5 that the Jacobian in the prediction step to worksheet 4 was being calculated incorrectly. More about Jacobians can be found here: - https://math.libretexts.org/Bookshelves/Calculus/Supplemental_Modules_(Calculus)/Vector_Calculus/3%3A_Multiple_Integrals/3.8%3A_Jacobians

help wanted

``` mu(1, 1) = mu(1) + (u.t * cos(mu(3) + u.r1)); mu(2, 1) = mu(2) + (u.t * sin(mu(3) + u.r1)); mu(3, 1) = mu(3) + (u.r1 + u.r2); mu(3,...

bug