Optimization-based and moving horizon estimation#877
Merged
murrayrm merged 14 commits intopython-control:mainfrom Mar 31, 2023
Merged
Optimization-based and moving horizon estimation#877murrayrm merged 14 commits intopython-control:mainfrom
murrayrm merged 14 commits intopython-control:mainfrom
Conversation
| :math:`Y[k] \in \mathbb{R}^p`, and :math:`V[k] \in \mathbb{R}^q` and | ||
| :math:`W[k] \in \mathbb{R}^p` represent random processes that are not | ||
| necessarily Gaussian white noise processes. The estimation problem that we | ||
| wish to solve is to find the estimate :math:`\hat x[\cdot]` that matches |
Contributor
There was a problem hiding this comment.
Should these be capital X-hat and Y-hat in keeping with the notation above?
Contributor
There was a problem hiding this comment.
Never mind, I realize now they're random processes.
sawyerbfuller
approved these changes
Mar 30, 2023
Contributor
sawyerbfuller
left a comment
There was a problem hiding this comment.
This looks like a great feature, LGTM
Co-authored-by: Sawyer Fuller <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds new functionality for computing the optimal estimate for a (nonlinear) I/O system using an explicit cost function of a fixed window of applied inputs and measured outputs. This optimal estimation problem is then used to create a system for solving moving horizon estimation (MHE) problems. Documentation and unit tests are included.
Summary of changes:
obc.OptimalEstimationProblemclass andobc.create_mhe_iosystem()function, which implement that main new functionality.gaussian_likelyhood_cost()to create cost function corresponding to Gaussian likelihoods for use in optimal estimation.disturbance_range_constraint()to create a range constraint on disturbances.iosys.pyand use that functionality consistently forobc.create_estimator_iosystemandobc.OptimalEstimationProblem.config.pyand updated legacy keyword processing class to use that functionality.@pytest.mark.slow), which can be used during development to skip slow tests by runningpytest -m "not slow".