Skip to content

Commit eac09dd

Browse files
docstring
1 parent fb1ab9e commit eac09dd

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/smsfusion/_smoothing.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ def __init__(self, ains: AidedINS | AHRS | VRU, cov_smoothing: bool = True) -> N
4242
self._ains = ains
4343
self._cov_smoothing = cov_smoothing
4444

45-
self._x_buf = [] # state estimates (no smoothing)
46-
self._P_buf = [] # error covariance estimates (no smoothing)
47-
self._dx_buf = [] # error-state estimates (no smoothing)
48-
self._P_prior_buf = [] # a priori error covariance estimates (no smoothing)
45+
self._x_buf = [] # state estimates (w/o smoothing)
46+
self._P_buf = [] # error covariance estimates (w/o smoothing)
47+
self._dx_buf = [] # error-state estimates (w/o smoothing)
48+
self._P_prior_buf = [] # a priori error covariance estimates (w/o smoothing)
4949
self._phi_buf = [] # state transition matrix
5050
self._x = np.array([]) # smoothed state estimates
51-
self._P = np.array([]) # smoothed erro covariance estimate
51+
self._P = np.array([]) # smoothed error covariance estimate
5252

5353
@property
5454
def ains(self) -> AidedINS | AHRS | VRU:

0 commit comments

Comments
 (0)