large matrix multiplication , out of memory error.

edited November 2011 in Science & Tech
i have sparse matrix V of size V =<162000x32400 double> or even bigger , I have to solve the following equations.

x_0=ones(size(V ,1) ,1);
y_0=V'*x_0;
result=V'*V + y_0*y_0'; %%%%% Problem here
The problem is in right hand side of last equation and is giving me out of memory error in matlab.

Comments

Sign In or Register to comment.