You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 userdiv!
orldiv!
with these objects in the objective function. We will not able to use thedot
function however. I'm not aware of any method similar to the 3-argsdot
function that would work with factorization objects.The text was updated successfully, but these errors were encountered: