Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions doc/manual/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ The solution set is approximated from an initial box :math:`[\mathbf{x}_0]=[0,2]
int main()
{
VectorVar x(3);
AnalyticFunction f { {x},
{
AnalyticFunction f { {x}, {
-(x[2]^2)+2*x[2]*sin(x[2]*x[0])+cos(x[2]*x[1]),
2*x[2]*cos(x[2]*x[0])-sin(x[2]*x[1])
}
Expand Down Expand Up @@ -191,7 +190,8 @@ User manual
* :ref:`sec-intervals`
* What is an interval?
* :ref:`sec-intervals-class`
* Boolean intervals
* :ref:`sec-intervals-intervalvector-class`
* :ref:`sec-intervals-boolinterval-class`

* :ref:`sec-linear`
* :ref:`sec-linear-vecmat`
Expand All @@ -207,11 +207,11 @@ User manual
* :ref:`sec-functions-analytic-operators`
* Extension to custom expressions
* Temporal functions
* :ref:`sec-functions-parallelepiped-eval`
* :ref:`sec-functions-peibos`
* Set-membership functions
* The class SetMembershipFunction
* Extension to custom expressions
* :ref:`sec-functions-parallelepiped-eval`
* :ref:`sec-functions-peibos`

* Tubes
* What is a tube?
Expand Down Expand Up @@ -338,10 +338,10 @@ User manual
* :ref:`sec-tools-registration`
* :ref:`sec-tools-octasym`

* Codac extensions
* :ref:`sec-extensions`
* :ref:`sec-extensions-capd`
* :ref:`sec-extensions-sympy`
* Interface with the IBEX library
* Sympy (symbolic computation)

* Frequently Asked Questions

Expand All @@ -356,9 +356,7 @@ How-to guides
-------------

* Robotics
* Non-linear state estimation
* State estimation by solving data association
* Range-only SLAM
* :ref:`sec-tuto-cprob`
* Explored area
* Loop detections and verifications

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ If you notice any mathematical operators missing from the list below, feel free
+-----------------------------------------------------+----------------------+---------------+-------------------------------------+--------+--------+-------+------------+
| :math:`\min(x_1,x_2)` | ``min(x1,x2)`` | |MinOp| | ``x1``, ``x2``: scalar ||okk| ||okk| ||okk| ||okk| |
+-----------------------------------------------------+----------------------+---------------+-------------------------------------+--------+--------+-------+------------+
| :math:`x_1\bmod x_2` | -- | |ModOp| | -- ||nok| ||nok| ||nok| ||bok| |
| :math:`x_1\mod p` | ``mod(x1,p)`` | |ModOp| | ``x1``, ``p``: scalar ||okk| ||nok| ||nok| ||okk| |
+-----------------------------------------------------+----------------------+---------------+-------------------------------------+--------+--------+-------+------------+
| :math:`(x_1)^{x_2}` | | ``pow(x1,x2)`` | |PowOp| | ``x1``, ``x2``: scalar ||okk| ||okk| ||okk| ||okk| |
| | | ``x1^x2`` | | | | | | |
Expand Down
Binary file modified doc/manual/tuto/cp_robotics/img/slam_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion doc/manual/tuto/cp_robotics/lesson_b_data_association.rst
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ We now assume that the identities of the landmarks are not known. This means tha
:dedent: 0


**B.11.** *Same result* means that the data association worked: each measurement has been automatically associated to the correct landmark without ambiguity.
**B.10.** *Same result* means that the data association worked: each measurement has been automatically associated to the correct landmark without ambiguity.

We can now look at the set ``m`` containing the associations. If one :math:`[\mathbf{m}^i]` contains only one item of :math:`\mathbb{M}`, then it means that the landmark of the measurement :math:`\mathbf{y}^i` has been identified.

Expand Down
Loading