Skip to content

Commit

Permalink
fix a bug in function input parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Joanna-HE committed Jun 16, 2023
1 parent 4ce9a9d commit 59cfc09
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions IKFoM_toolkit/esekfom/esekfom.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ class esekf{
for(int i = 0; i < dof; i++){
seg_sen(i) = dx_(idx+i);
}
x_.Lie_Jacob_Right(seg_sen, jacr);
x_.Lie_Jacob_Right(seg_sen, jacr, idx);

for(int i = 0; i < n; i++){
for(int j=0; j<dof; j++)
Expand Down Expand Up @@ -862,7 +862,7 @@ class esekf{
for(int i = 0; i < dof; i++){
seg_sen(i) = dx_(idx+i);
}
x_.Lie_Jacob_Right(seg_sen, jacr);
x_.Lie_Jacob_Right(seg_sen, jacr, idx);

for(int i = 0; i < n; i++){
for(int j=0; j<dof; j++)
Expand Down Expand Up @@ -1156,7 +1156,7 @@ class esekf{
for(int i = 0; i < dof; i++){
seg_sen(i) = dx_(idx+i);
}
x_.Lie_Jacob_Right(seg_sen, jacr);
x_.Lie_Jacob_Right(seg_sen, jacr, idx);

for(int i = 0; i < n; i++){
for(int j=0; j<dof; j++)
Expand Down Expand Up @@ -1456,7 +1456,7 @@ class esekf{
for(int i = 0; i < dof; i++){
seg_sen(i) = dx_(idx+i);
}
x_.Lie_Jacob_Right(seg_sen, jacr);
x_.Lie_Jacob_Right(seg_sen, jacr, idx);

for(int i = 0; i < n; i++){
for(int j=0; j<dof; j++)
Expand Down Expand Up @@ -1756,7 +1756,7 @@ class esekf{
for(int i = 0; i < dof; i++){
seg_sen(i) = dx_(idx+i);
}
x_.Lie_Jacob_Right(seg_sen, jacr);
x_.Lie_Jacob_Right(seg_sen, jacr, idx);

for(int i = 0; i < n; i++){
for(int j=0; j<dof; j++)
Expand Down Expand Up @@ -2061,7 +2061,7 @@ class esekf{
for(int i = 0; i < dof; i++){
seg_sen(i) = dx_(idx+i);
}
x_.Lie_Jacob_Right(seg_sen, jacr);
x_.Lie_Jacob_Right(seg_sen, jacr, idx);

for(int i = 0; i < n; i++){
for(int j=0; j<dof; j++)
Expand Down

0 comments on commit 59cfc09

Please sign in to comment.