You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/examples/interm_dynpose.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ A smaller example in two dimensions where we wish to estimate the velocity of so
12
12
13
13
Variable nodes retain meta data (so called "soft types") describing the type of variable. Common VariableNode types are `RoME.Point2D`, `RoME.Pose3D`. VariableNode soft types are passed during construction of the factor graph, for example:
14
14
```julia
15
-
v1 =addNode!(fg, :x1, Pose2)
15
+
v1 =addVariable!(fg, :x1, Pose2)
16
16
```
17
17
18
18
Certain cases require that more information be retained for each VariableNode, and velocity calculations are a clear example where time stamp data across positions is required.
@@ -105,14 +105,14 @@ A brief usage example looks as follows, and further questions about how the prei
0 commit comments