DB48X-on-DM42 icon indicating copy to clipboard operation
DB48X-on-DM42 copied to clipboard

Interpret incomplete matrices as sparse

Open c3d opened this issue 2 years ago • 0 comments

When we have [[1 2 3] [4 5] [6]], we could interpret this as a sparse matrix by filling the missing elements with 0. In other words, this would be the triangular matrix:

[
   [ 1 2 3 ]
   [ 4 5 0 ]
   [ 6 0 0 ]
]

c3d avatar Oct 29 '23 01:10 c3d