MATLAB: How to store big triangular matrix

MATLABmatrixperformance

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

Best Answer

It depends on what you are doing with the matrices. When you only want to store the matrices, but do not perform any operations, a cell vector seems to be sufficient. When you need column or row operations only, this might be efficient also.
But e.g. for a matrix multiplication this would be a severe disadvantage and a full matrix is much better.