Skip to content

Commit fd9c30c

Browse files
committed
argument missmach on KalmanFilter
1 parent f4514c8 commit fd9c30c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v2/blob/kalman_blob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func (b *KalmanBlobie) Update(newb Blobie) error {
119119
b.uMatrix.Set(3, 0, 0.0)
120120

121121
// Evaluate state
122-
state, err := b.pointTracker.Process(b.yMatrix, b.uMatrix)
122+
state, err := b.pointTracker.Process(b.uMatrix, b.yMatrix)
123123
if err != nil {
124124
return errors.Wrap(err, "Can't process linear Kalman filter")
125125
}

0 commit comments

Comments
 (0)