We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmath
While testing the kalman filtering in acts-project/traccc#264, I found that the smoothing results into non-positive-definite covariance matrix for single precision. It looks like we can correct the covariance matrix to be positive definite using the Singular Value Decomposition method as implemented in: https://github.com/acts-project/acts/blob/e1b8ebbf0511c4636df84eb77509efff5501d384/Core/include/Acts/EventData/detail/covariance_helper.hpp#L29-L49
Since Eigen and SMatrix already have the SVD functions, we only need to add it to cmath plugin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While testing the kalman filtering in acts-project/traccc#264, I found that the smoothing results into non-positive-definite covariance matrix for single precision. It looks like we can correct the covariance matrix to be positive definite using the Singular Value Decomposition method as implemented in:
https://github.com/acts-project/acts/blob/e1b8ebbf0511c4636df84eb77509efff5501d384/Core/include/Acts/EventData/detail/covariance_helper.hpp#L29-L49
Since Eigen and SMatrix already have the SVD functions, we only need to add it to cmath plugin
The text was updated successfully, but these errors were encountered: