Skip to content

Commit 370fd2d

Browse files
committed
debug : setstate!(::StateEstimator)
1 parent e7538cf commit 370fd2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/state_estim.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Set `estim.x̂` states to values specified by `x̂`.
2828
"""
2929
function setstate!(estim::StateEstimator, x̂)
3030
size(x̂) == (estim.nx̂,) || error("x̂ size must be $((estim.nx̂,))")
31-
model.x̂[:] =
31+
estim.x̂[:] =
3232
return estim
3333
end
3434

0 commit comments

Comments
 (0)