Skip to content

Commit cd27a02

Browse files
authored
Update 10_Sensordatenverarbeitung.md
Corrects minor typos
1 parent 95a3189 commit cd27a02

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

10_Sensordatenverarbeitung.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -228,13 +228,13 @@ Schritt 2: Transformation in neues Koordinatensystem
228228

229229
$$
230230
\begin{bmatrix}
231-
x_L \\
232-
y_L \\
231+
x_K \\
232+
y_K \\
233233
\end{bmatrix}
234234
=
235235
\begin{bmatrix}
236-
x_R \\
237-
y_R \\
236+
x_L \\
237+
y_L \\
238238
\end{bmatrix}
239239
+
240240
\begin{bmatrix}
@@ -552,7 +552,7 @@ var mean = slidingAverage(noisy_values, window_size);
552552

553553
var diff = new Array(xrange.length).fill(0);
554554
for (var i = 1; i <= noise.length; i++){
555-
diff[i] = mean[i-1] - noisy_values[i];
555+
diff[i] = mean[i] - noisy_values[i];
556556
}
557557
```
558558
```js -Visualization

0 commit comments

Comments
 (0)