Skip to content
Snippets Groups Projects
Commit 81a0d645 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

[skip ci] const ref variable

parent 88806bdf
No related branches found
No related tags found
2 merge requests!54devel->main,!50Resolve "Bootstrap sequence"
...@@ -282,7 +282,7 @@ void ProcessorImu::bootstrap() ...@@ -282,7 +282,7 @@ void ProcessorImu::bootstrap()
// compute local g and transformation to global g // compute local g and transformation to global g
double dt = t_current - first_capture->getTimeStamp(); // double dt = t_current - first_capture->getTimeStamp(); //
Vector3d dv = delta_int.segment(7, 3); // const auto& dv = delta_int.segment(7, 3); //
Vector3d g_l = -((q_l_r * q_r_s) * dv / dt); // See eq. (20) Vector3d g_l = -((q_l_r * q_r_s) * dv / dt); // See eq. (20)
const auto& g_w = gravity(); // const auto& g_w = gravity(); //
const auto& p_w_l = Vector3d::Zero(); // will pivot around the local origin const auto& p_w_l = Vector3d::Zero(); // will pivot around the local origin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment