-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PYTHON][DOC] Added ukf examples in Python documentation
- Loading branch information
rlagneau
committed
May 22, 2024
1 parent
451aa4c
commit 9e1dd1c
Showing
4 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Example on a linear case study on how to use Unscented Kalman filter | ||
======================================================================= | ||
|
||
This example shows how to use an Unscented Kalman filter in Python. | ||
|
||
This example is a linear case study. It is not what is intended for the Unscented | ||
Kalman filter, but it permits to get familiar with the different classes that | ||
are used. | ||
|
||
The state vector and measurements are explained in the `C++ example <https://visp-doc.inria.fr/doxygen/visp-daily/ukf-linear-example_8cpp-example.html>`_. | ||
|
||
|
||
|
||
.. literalinclude:: /examples/ukf-linear-example.py | ||
:language: python |
13 changes: 13 additions & 0 deletions
13
modules/python/doc/rst/tutorials/misc/ukf-nonlinear-linear-complex.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Example on a complex non-linear case study on how to use Unscented Kalman filter | ||
======================================================================= | ||
|
||
This example shows how to use an Unscented Kalman filter in Python. | ||
|
||
This example is a complex non-linear case study. | ||
|
||
The state vector and measurements are explained in the `C++ example <https://visp-doc.inria.fr/doxygen/visp-daily/ukf-nonlinear-complex-example_8cpp-example.html>`_. | ||
|
||
|
||
|
||
.. literalinclude:: /examples/ukf-nonlinear-complex-example.py | ||
:language: python |
13 changes: 13 additions & 0 deletions
13
modules/python/doc/rst/tutorials/misc/ukf-nonlinear-linear.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Example on a non-linear case study on how to use Unscented Kalman filter | ||
======================================================================= | ||
|
||
This example shows how to use an Unscented Kalman filter in Python. | ||
|
||
This example is a non-linear case study. | ||
|
||
The state vector and measurements are explained in the `C++ example <https://visp-doc.inria.fr/doxygen/visp-daily/ukf-nonlinear-example_8cpp-example.html>`_. | ||
|
||
|
||
|
||
.. literalinclude:: /examples/ukf-nonlinear-example.py | ||
:language: python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters