Sparse solver for large symmetric matrices

조회 수: 6 (최근 30일)
Salvo
Salvo 2014년 3월 18일
댓글: Christine Tobler 2023년 2월 28일
I have available large sparse matrices from a FEM software (ANSYS) to use for an eigenvalue problem.
The problem is i can not store 10^6 x 10^6 sparse matrices in matlab because it is too big.
Did anybody experienced and solved similar problem?
ANsys allows to convert in harwell boeing format these matrices, which are sparse, but then i can't store inside matlab and use them for apply a banal eigen value problem using for example the routine "eigs".
Thanks for the help
  댓글 수: 2
Matt J
Matt J 2014년 3월 18일
10^6 x 10^6 isn't a very large size for a sparse matrix. If it's not fitting in memory, it most likely means the number of non-zero entries is inappropriately large.
Christine Tobler
Christine Tobler 2023년 2월 28일
Can you say more about how you are loading this matrix into MATLAB, and how big the file you are trying to import is?
If you are able to export this sparse matrix as a simple list of triplets (row index, column index, value), or in matrix market format, this would probably be easier to import. All code for importing harwell-boeing matrices I found online seems to just be dead links to previously existing code.

댓글을 달려면 로그인하십시오.

답변 (1개)

Andrew Knyazev
Andrew Knyazev 2015년 5월 15일
both eigs and http://www.mathworks.com/matlabcentral/fileexchange/48-lobpcg-m can be used in a matrix-free fashion, only needing a function the performs the matrix-vector products that the user can provide.

카테고리

Help CenterFile Exchange에서 Linear Least Squares에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by