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: src/estimator/kalman.jl
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -632,7 +632,7 @@ identical to [`UnscentedKalmanFilter`](@ref). The Jacobians of the augmented mod
632
632
automatic differentiation.
633
633
634
634
!!! warning
635
-
See Extended Help if you get an error like:
635
+
See the Extended Help of [`linearize`](@ref) function if you get an error like:
636
636
`MethodError: no method matching (::var"##")(::Vector{ForwardDiff.Dual})`.
637
637
638
638
# Arguments
@@ -652,11 +652,6 @@ ExtendedKalmanFilter estimator with a sample time Ts = 5.0 s, NonLinModel and:
652
652
0 unmeasured outputs yu
653
653
0 measured disturbances d
654
654
```
655
-
656
-
# Extended Help
657
-
Automatic differentiation (AD) allows exact Jacobians. The [`NonLinModel`](@ref) `f` and `h`
658
-
functions must be compatible with this feature though. See [Automatic differentiation](https://jump.dev/JuMP.jl/stable/manual/nlp/#Automatic-differentiation)
`MethodError: no method matching (::var"##")(::Vector{ForwardDiff.Dual})`.
23
+
20
24
## Examples
21
25
```jldoctest
22
26
julia> model = NonLinModel((x,u,_)->x.^3 + u, (x,_)->x, 0.1, 1, 1, 1);
@@ -27,6 +31,11 @@ julia> linmodel.A
27
31
1×1 Matrix{Float64}:
28
32
300.0
29
33
```
34
+
35
+
## Extended Help
36
+
Automatic differentiation (AD) allows exact Jacobians. The [`NonLinModel`](@ref) `f` and `h`
37
+
functions must be compatible with this feature though. See [Automatic differentiation](https://jump.dev/JuMP.jl/stable/manual/nlp/#Automatic-differentiation)
0 commit comments