Possible Duplicate:
Efficient way to solve for X in AX=B in MATLAB when both A and B are big matrices
I am trying to solve the equation Ax=b in matlab, by doing X=A\b. However the problem is that A is a huge matrix (2048000x2048000), and matlab crashes while performing it. Is there another efficient way to solve this equation such that matlab doesn't crash?