Out of memory using mrdivide
古いコメントを表示
Hello,
I am dividing two sparse matrices.
A / B
I get the message: ??? Error using ==> mrdivide Out of memory. Type HELP MEMORY for your options.
The Largest available Contiguous Free Blocks on my computer has 2046 MB. Both sparse matrices have 36288 non-zero elements. The size of the full matrices is 36288*36288. I do not want an element by element division. Does anyone know how to solve this problem?
Thanks!
Bas
1 件のコメント
Jan
2011 年 6 月 1 日
Do you have 1 element per line? Then A/B = (B'\A')' could be done manually also.
採用された回答
その他の回答 (6 件)
Ivan van der Kroon
2011 年 6 月 5 日
1 投票
Some follow-ups:
a) Where do you need this for? Your result will lose much of its sparcity. Maybe if you post your entire problem, some more practical solutions can be suggested. You probably want to solve some ode?
b) About the sparcity; you can predict which entries are going to be filled. Since A is diagonal the entries are equal to the entries in the inverse of B. B has three diagonals; one at 0 (i.e. the main diagonal, as in spdiags) and two others at which position? This is very important because the inverse is now filled at the multiples of the location of these diagonals. For example, when they are at -1 and 1 the inverse is a full matrix, when it is -2 and 2 the inverse is empty for its odd diagonals (i.e. 0, -2, 2, -4, 4,… are filled), when they are at -3 and 3 the inverse diagonals are at 0, -3, 3, -6, 6,... and so on. Especially when the diagonals are close to the main diagonal, I would go into a) and stay away from this matrix AB^-1.
3 件のコメント
Bas
2011 年 6 月 6 日
Ivan van der Kroon
2011 年 6 月 6 日
Can you specify where this matrix division comes in? I assume size(N)=size(a)=[n,n]; size(D)=size(u)=[1,1]; n=36288;
Then it reads dN/dt=nabla^2 N - (a(x,y)+u)*N where nabla is also known as the del operator. The diffusion equation is usually solved by separation of variables. The problem here is the source term a. How 'nice' is this function?
Bas
2011 年 6 月 6 日
Image Analyst
2011 年 6 月 4 日
0 投票
Are you sure you want to do a matrix division (like multiplying by the matrix inverse) rather than an "element-by-element" division of A by B. If you want every element of A divided by the corresponding element of B you'd use dot slash instead of slash
elementByElementDivision = A ./ B;
Ivan van der Kroon
2011 年 6 月 7 日
Short about inv(B); it has 191*2+1 diagonals (36288/189=192, but this is for one of the triangles and includes the main diagonal). It is also symmetric and off course you can divide the matrix in C=192x192 sections of I=189x189 identity matrices, such that inv(B)=kron(C,eye(189)); Hence there will only be 192*192-192=36672 distinct values. The entries will be
a=-192:-1;
C=zeros(192);
C(n,n:end)=n*a(n:end);%e.g. with a for-loop and make it symmetric afterward)
C=C/193;
You can verify this for instance for 1=B(1,1)*inv(B)(1,1)+B(190,1)*inv(B)(1,190)=-2*-192/193+1*-191/193=193/193=1.
But I just don't think this is practical because you will still be out of memory when you try to perform kron, i.e. making the big matrix inv(B); However, you know all the entries now.
I don't get the a(x,y) since N is 1-D and a doesn't show up in your discrete time integration.
10 件のコメント
Ivan van der Kroon
2011 年 6 月 7 日
Sorry, I just made a mistake; this is of course for inv(Qy), but I'm sure you can find the entries of inv(B) yourself.
Bas
2011 年 6 月 9 日
Bas
2011 年 6 月 9 日
Ivan van der Kroon
2011 年 6 月 9 日
The matrix Qy you produce does not have a full main diagonal. You can check it with spy(Qy). It is easier to make it like this Qy = spdiags(ones(x*y,1)*[1 -2 1],[-x 0 x],x*y,x*y); It just checked it and get something like 1e-14 for norm(inv(Qy) - kron(C,eye(x)));
Can you split a(x,y)=a1(x)*a2(y)? Can you also specify what (d2/dx2)N and (d2/dy2)N are since N is just 1-D? If I interpret your equation as it is, you can just solve it with ode45. Can you you maybe specify again what exactly the unknowns are?
Bjorn Gustavsson
2011 年 6 月 9 日
I guess N is the 2-D density of insects. So Bas wants to solve for the timevariation of N(x,y) that is get N(x,y,t)
Ivan van der Kroon
2011 年 6 月 10 日
Well, Bas commented "size(N)=[n,1]; size(a)=[n,n], size(D)=size(u)=[1,1]; n=36288."
Bjorn Gustavsson
2011 年 6 月 10 日
That seems odd to me, but I might be confusing things. The PDE sure looks like a 2-D diffusion equation with sources and losses...
Bas
2011 年 6 月 13 日
Bas
2011 年 6 月 13 日
Ivan van der Kroon
2011 年 6 月 15 日
You don't get the correct matrix because you do not normalize it correctly: C=C/(y+1); You divided by y and added one. For both x and y at 20 I get 1.0073e-013 on my win7x64 machine.
I assume you are able to take the correct Laplacian although you have reshaped this vector. What are the sizes of D,G,u,dx,dy? Are they available or unknowns (I don't quite understand what you mean by estimating)?
Whether a can be split makes the number of variables much smaller (for n it now is 2n instead of n^2). Next I figured that you can perform separation of variables on N, but you clarified now what N is? So, how do I interpret a as N is actually 2-D, i.e what does a looks like after reshaping?
Bjorn Gustavsson
2011 年 6 月 7 日
0 投票
Bas, why cant you solve the PDE analytically - or at least "analytically enough"? A diffusion is just a convolution with a Gaussian Kernel, so the solution of your diffusion equation should be something not too dissimilar. See for example: http://en.wikipedia.org/wiki/Heat_equation#Fundamental_solutions. That should be possible to use to build a discretized model of to use for parameter estimation.
HTH,
3 件のコメント
Bas
2011 年 6 月 9 日
Bjorn Gustavsson
2011 年 6 月 9 日
Yes, I think so. I've used a slightly modified 3-D version of the Greens function solution to "Inhomogeneous heat equation,
Problem on (-∞,∞) homogeneous initial conditions" on that wikipedia page for a time-varying parameter estimation problem. It should be possible to combine that solutions with the one for the initial value problem. I don't know how "discrete" your insect density is - my problem was for a truly continous gas. But for the PDE you wrote above it should work.
Bas
2011 年 6 月 13 日
Bjorn Gustavsson
2011 年 6 月 13 日
0 投票
Not realy anything better than the references on the wikipedia pages. But http://eqworld.ipmnet.ru/en/solutions/lpde/heat-toc.pdf contains a few more examples. That the solutions solve the heat equation should be possible to prove by differentiating the solutions.
カテゴリ
ヘルプ センター および File Exchange で Matrix Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!