add template specialisation for kalman filter 2 1 2 #167
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.
4774 is trying their hand at state space control. We are starting with a single jointed arm to control our intake and shooter from this past season. The C++/Java code creates a 2 1 2 system and slices it into a 2 1 1 system. We can't do this in Python because that method doesn't exist.
I don't think language parity is likely to happen in this case. Slicing is also a whack operation in this part of the codebase anyway. I suggest sticking a 2 1 2 kf in the example. This class would also help our cause, making arms great again anyway.
I manually added these entries for export in the
__init__.py
. The file should be autogenerated, but I can't see what else I should modify at first glance. A quick search for any other reference to the word KalmanFilter and estimator didn't show me another spot to modify, but if you tell me where to look, I will do the things.I figure an equivalent ekf couldn't hurt either if we want to get fancy later