Skip to content
New issue

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

Expand covariance matrices when reading in ISIS control networks #158

Open
jessemapel opened this issue Feb 22, 2021 · 0 comments
Open

Expand covariance matrices when reading in ISIS control networks #158

jessemapel opened this issue Feb 22, 2021 · 0 comments

Comments

@jessemapel
Copy link
Contributor

ISIS control networks store covariance matrices in compressed format, just one triangle, because they are symmetric matrices. Here's the actual storage order, numbers indicate index in the storage array and "X" indicates absent:

0 1 2
X 3 4
X X 5

It would be very helpful if we unpacked these matrices on ingestion and then repacked them on write. Currently, anything that wants to work with this data has to unpack them each time and anything that wants to update them has to repack the updates.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant