Skip to content

Commit

Permalink
fixed innovation comma initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
petrlmat committed Jan 26, 2024
1 parent 51eb47f commit b8da744
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/estimators/altitude/alt_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void AltGeneric::initialize(ros::NodeHandle &nh, const std::shared_ptr<CommonHan
1, 0, 0;

innovation_ <<
0, 0, 0;
0;

// clang-format on

Expand Down
2 changes: 1 addition & 1 deletion src/estimators/heading/hdg_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void HdgGeneric::initialize(ros::NodeHandle &nh, const std::shared_ptr<CommonHan
1, 0;

innovation_ <<
0, 0;
0;


// clang-format on
Expand Down
2 changes: 1 addition & 1 deletion src/estimators/lateral/lat_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void LatGeneric::initialize(ros::NodeHandle &nh, const std::shared_ptr<CommonHan
0, 1, 0, 0, 0, 0;

innovation_ <<
0, 0, 0, 0, 0, 0;
0, 0;


// clang-format on
Expand Down

0 comments on commit b8da744

Please sign in to comment.