Skip to content

Avoid Matrix Inversion in the MovingHorizonEstimator #112

@franckgaga

Description

@franckgaga

Right now I explicitly invert the covariance matrices in the MHE. I do dot(V̂, invR̂_Nk, V̂) in the objective function, which is very fast and non-allocating. The implementation is simple like that but it's probably not the most numerically robust solution.

I should probably store factorization objects of the covariances in the MHE struct, and use rdiv! or ldiv! with these objects in the objective function. We will not able to use the dot function however. I'm not aware of any method similar to the 3-args dot function that would work with factorization objects.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions