-
Notifications
You must be signed in to change notification settings - Fork 16
Errata
Peter Corke edited this page Jan 6, 2025
·
3 revisions
This page contains error and clarifications for the book. To create errata please post an Issue on Github and use the errata template.
Chapter 6, page 233, (6.22) Issue #15
This is the insertion Jacobian for the SLAM case, not the landmark-only case as it should be. For the landmark-only case the Jacobian is
For the SLAM case (6.22) applies using the definition of
There's an error in the third code snippet on the page
x = inv(sqrtm(E))*y;
plot(x(:,1),x(:,2));
should be
x = inv(sqrtm(E))*y;
clf; plot(x(1,:),x(2,:));
because the arrays x
and y
are both 2x50, ie. each column is a point.
RVC3 Wiki