Inserting 0 in sparse matrices without changing sparsity pattern?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anders Melander
el 5 de Abr. de 2024
Editada: Bruno Luong
el 5 de Abr. de 2024
Hello,
In my code I have very large sparse diagonal matrices, where the values of the diagonal change over time.
The code is very long, so I instead have an example of the issue profiled as seen below. If the new diagonal b contains zeros (line 17, 30% zeros), it is much slower compared to if b contains no zeros. In my own code b usually has between 5-30% zeros. My guess is this is because MATLAB reformats the sparse matrix when a zero is inserted(i.e. the element is deleted, indices are changed). Is it possible to tell MATLAB to not change the sparse matrix, but instead treat inserted zeros as any other value? By this I mean that the value 0 is actually saved in the diagonal, despite it being a sparse matrix.
0 comentarios
Respuesta aceptada
Bruno Luong
el 5 de Abr. de 2024
Editada: Bruno Luong
el 5 de Abr. de 2024
Is it possible to tell MATLAB to not change the sparse matrix, but instead treat inserted zeros as any other value?
Short answer: No.
You can insert something that replaces 0, for example NaN or realmin and do specific treament with this value.
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!