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
@@ -73,7 +73,7 @@ Additionally, the solvable flag is also set to indicate that the factor can be u
73
73
74
74
Four factors are added: a prior, a linear conditional relationship with a normal distribution between x0 and x1, and a pair of linear conditional relationships between each pose and the landmark.
75
75
76
-
```@example buildingGraphs; continued = true
76
+
```julia
77
77
prior =addFactor!(dfg, [:x0], Prior(Normal(0,1)))
78
78
f1 =addFactor!(dfg, [:x0; :x1], LinearRelative(Normal(50.0,2.0)), solvable=1)
79
79
f1 =addFactor!(dfg, [:l0; :x0], LinearRelative(Normal(40.0,5.0)), solvable=1)
@@ -97,12 +97,12 @@ variable and factor labels can be retrieved with the [`ls`](@ref)/[`listVariable
97
97
[`lsf`](@ref)/[`listFactors`](@ref) functions:
98
98
99
99
For example listing the variables in the graph we created above:
0 commit comments