High dimension matrix algebra
2 次查看(过去 30 天)
显示 更早的评论
Hi there,
I'm trying to solve a set of linear equations by using Matlab syntax '\'. This properly works for dimensions less than 100000-by-100000. But for higher orders it starts to produce an error regarding the lack of enough memory and for dimensions greater than one million it says maximum variable size is exceeded.
Please help me to see how can I tackle this problem. I have a 10000000-by-10000000 set of equations to solve.
0 个评论
采纳的回答
Jan
2014-11-16
To store a 10000000-by-10000000 matrix you need 800TB Memory - assuming that it is full. As a rule of thumb the double size of free memory is recommended.
Do you see the problem?
4 个评论
Matt J
2015-2-1
That's what the sparse() command is for...so you don't have to allocate all the zeros occurring in your matrix.
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!