File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -108,9 +108,9 @@ void FusionEKF::ProcessMeasurement(const MeasurementPackage &measurement_pack) {
108
108
return ;
109
109
}
110
110
111
- /* *
112
- * Prediction
113
- */
111
+ /* ******************************************************
112
+ Prediction
113
+ ****************************************************** * /
114
114
115
115
/* *
116
116
* TODO: Update the state transition matrix F according to the new elapsed time.
@@ -139,9 +139,9 @@ void FusionEKF::ProcessMeasurement(const MeasurementPackage &measurement_pack) {
139
139
140
140
ekf_.Predict ();
141
141
142
- /* *
143
- * Update
144
- */
142
+ /* *********************************************************
143
+ Update
144
+ ********************************************************* * /
145
145
146
146
/* *
147
147
* TODO:
@@ -164,6 +164,6 @@ void FusionEKF::ProcessMeasurement(const MeasurementPackage &measurement_pack) {
164
164
}
165
165
166
166
// print the output
167
- cout << " x_ = " << ekf_.x_ << endl;
168
- cout << " P_ = " << ekf_.P_ << endl;
167
+ cout << " New x_ = " << ekf_.x_ << endl;
168
+ cout << " New P_ = " << ekf_.P_ << endl;
169
169
}
You can’t perform that action at this time.
0 commit comments