There is a large matrix that is used in Ax=b type problem. A is symmetric. Is there any algorithm to let us save only half of the matrix and do operation like x=A\b on it?
There is a large matrix that is used in Ax=b type problem. A is
Share
You’ll only save half the memory, but you can do this by creating a flat version of the matrix, saving that, then unflattening it. The extra time required probably doesn’t make the saving worthwhile, mind: