CrySpace::LuenbergerObserver
Constructors
new(sys : StateSpace, l : Float64Tensor, x0_hat : Float64Tensor | Nil = nil)
SourceInstance methods
l=(l : Float64Tensor)
Sourcesys
Sourcesys=(sys : StateSpace)
SourceContinuous-time update using a single RK4 step of size dt: dx_hat/dt = A * x_hat + B * u + L * (y - C * x_hat - D * u)
update_discrete(y : Float64Tensor, u : Float64Tensor) : Float64Tensor
Discrete-time update: x_hat_{k+1} = A * x_hat_k + B * u_k + L * (y_k - C * x_hat_k - D * u_k)
x_hat
Sourcex_hat=(x_hat : Float64Tensor)
Source