We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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, 1) = normalize_angle(mu(3, 1)); % Compute the 3x3 Jacobian Gx of the motion model Gx = eye(3, 3); Gx(1, 3) = -u.t * cos(mu(3) + u.r1); Gx(2, 3) = u.t * sin(mu(3) + u.r1);
Jacobian should be
Gx = eye(3, 3); Gx(1, 3) = -u.t * sin(mu(3) + u.r1); Gx(2, 3) = u.t * cos(mu(3) + u.r1);
The text was updated successfully, but these errors were encountered:
Correct Jacobian in preditcion step
a0f259f
@varunbachalli highlighted in #5 that the Jacobian in this prediction step is wrong. 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
conorhennessy
No branches or pull requests
Jacobian should be
The text was updated successfully, but these errors were encountered: