Skip to content

Commit 40bd66d

Browse files
committed
doc: round jldoctest values
1 parent ebf6f9b commit 40bd66d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/estimator/manual.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ ManualEstimator estimator with a sample time Ts = 0.5 s, LinModel and:
119119
return collect([y_data ŷ_data]')
120120
end;
121121
122-
julia> YandŶ = man_sim()
122+
julia> YandŶ = round.(man_sim(), digits=6)
123123
2×5 Matrix{Float64}:
124-
0.0 0.239713 0.227556 0.157837 0.0986288
125-
-1.41242e-19 0.238713 0.226556 0.156837 0.0976288
124+
0.0 0.239713 0.227556 0.157837 0.098629
125+
-0.0 0.238713 0.226556 0.156837 0.097629
126126
```
127127
128128
A second use case is to allow the user to manually provide the state estimate computed

0 commit comments

Comments
 (0)