Skip to content

Commit 6bc614b

Browse files
ains property
1 parent 47dbea9 commit 6bc614b

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/smsfusion/_smoothing.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@ def __init__(self, ains: AidedINS | AHRS | VRU, cov_smoothing: bool = True) -> N
5050
self._ains = ains
5151
self._cov_smoothing = cov_smoothing
5252

53+
@property
54+
def ains(self) -> AidedINS | AHRS | VRU:
55+
"""
56+
The underlying AidedINS instance used for forward filtering.
57+
58+
Returns
59+
-------
60+
AidedINS or AHRS or VRU
61+
The AidedINS instance.
62+
"""
63+
return self._ains
64+
5365
def update(self, *args, **kwargs) -> Self:
5466
"""
5567
Update the AINS with measurements, and append the current AINS state to

0 commit comments

Comments
 (0)