@@ -111,7 +111,7 @@ julia> model = LinModel([tf(3, [30, 1]); tf(-2, [5, 1])], 0.5);
111111julia> estim = SteadyKalmanFilter(model, i_ym=[2], σR=[1], σQint_ym=[0.01])
112112SteadyKalmanFilter estimator with a sample time Ts = 0.5 s, LinModel and:
113113 1 manipulated inputs u (0 integrating states)
114- 3 states x̂
114+ 3 estimated states x̂
115115 1 measured outputs ym (1 integrating states)
116116 1 unmeasured outputs yu
117117 0 measured disturbances d
@@ -270,7 +270,7 @@ julia> model = LinModel([tf(3, [30, 1]); tf(-2, [5, 1])], 0.5);
270270julia> estim = KalmanFilter(model, i_ym=[2], σR=[1], σP0=[100, 100], σQint_ym=[0.01])
271271KalmanFilter estimator with a sample time Ts = 0.5 s, LinModel and:
272272 1 manipulated inputs u (0 integrating states)
273- 3 states x̂
273+ 3 estimated states x̂
274274 1 measured outputs ym (1 integrating states)
275275 1 unmeasured outputs yu
276276 0 measured disturbances d
@@ -431,7 +431,7 @@ julia> model = NonLinModel((x,u,_)->0.1x+u, (x,_)->2x, 10.0, 1, 1, 1);
431431julia> estim = UnscentedKalmanFilter(model, σR=[1], nint_ym=[2], σP0int_ym=[1, 1])
432432UnscentedKalmanFilter estimator with a sample time Ts = 10.0 s, NonLinModel and:
433433 1 manipulated inputs u (0 integrating states)
434- 3 states x̂
434+ 3 estimated states x̂
435435 1 measured outputs ym (2 integrating states)
436436 0 unmeasured outputs yu
437437 0 measured disturbances d
@@ -665,7 +665,7 @@ julia> model = NonLinModel((x,u,_)->0.2x+u, (x,_)->-3x, 5.0, 1, 1, 1);
665665julia> estim = ExtendedKalmanFilter(model, σQ=[2], σQint_ym=[2], σP0=[0.1], σP0int_ym=[0.1])
666666ExtendedKalmanFilter estimator with a sample time Ts = 5.0 s, NonLinModel and:
667667 1 manipulated inputs u (0 integrating states)
668- 2 states x̂
668+ 2 estimated states x̂
669669 1 measured outputs ym (1 integrating states)
670670 0 unmeasured outputs yu
671671 0 measured disturbances d
0 commit comments