how to store big triangular matrix
Ältere Kommentare anzeigen
I need to store and operate(so time of referencing operations is very important) with thriangular matrix. How to do it effectively? I think that using of sparse matrix is not efficient because we need to store indexes. May be it is better to store as 1-d cell array of 1-d "normal" arrays? Or some other way? Please help. And sorry for my poor English
1 Kommentar
Chris Turnes
am 8 Aug. 2014
How large are your matrices? Can you fit the whole matrix in memory, and if not, can you fit only the non-zero coefficients in memory? Given the density of the matrix, you are correct that storing it as a sparse array will not be efficient. However, using a full matrix may still be your best option because of the efficiency of MATLAB's operations with triangular matrices.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!