Inserting 0 in sparse matrices without changing sparsity pattern?

3 Ansichten (letzte 30 Tage)
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.

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 5 Apr. 2024
Bearbeitet: Bruno Luong am 5 Apr. 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.
  1 Kommentar
Anders Melander
Anders Melander am 5 Apr. 2024
Yeah, I had already used realmin as a "hack", just wondered if I could have avoided it, but seems not.
Thanks for the answer!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by