ekf2: change indication further reduce data precision

This commit is contained in:
Daniel Agar
2021-11-01 14:40:18 -04:00
committed by Mathieu Bresciani
parent 1317b1a6e1
commit fec0d6c5ed
3 changed files with 737 additions and 737 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -55,7 +55,7 @@ void EkfLogger::writeState()
matrix::Vector<float, 24> state = _ekf->getStateAtFusionHorizonAsVector();
for (int i = 0; i < 24; i++) {
_file << "," << std::setprecision(4) << state(i);
_file << "," << std::setprecision(3) << state(i);
}
}