Quick method in solving symmetric linear equation
5 views (last 30 days)
Show older comments
In simulation of PDE, I have to solve a linear equation: Ax = b for many times( with different b, iteratively ) .
The matrix A is symmetric with size of about 1e6*1e6 , and doesn't change in time. So I use cholesky decomposition
R = chol(A);
and solve two triangle equation
y = linsolve(R',b,opts.LT = true);
x = linsolve(R ,y,opts.UT = true);
at each iteration.
More detailed, matrix A is like:
A = M + S*inv(M)*S + S ;
where M is a diagonal matrix( lump mass matrix in finite element method ) , S is a symmetric stiff matrix.
My question is : is there a better way to solve this equation?( quick and stable ) All numerical method are acceptable, for example preconditioner, iterative method...
Thanks for your help!
0 Comments
Accepted Answer
Bruno Luong
on 22 Oct 2023
Edited: Bruno Luong
on 22 Oct 2023
If your S is sparse you should look at iterative methods. For symmtric case it is recommended to use pcg. To take further advantage you might want to find a cheap preconditioner. The problem is you have to iterate for new rhs.
The cholesky decomposition will fill the entire half matrix, so it will not be cheap. I'm even surprised you can even do it with 1e6 matrix.
More Answers (1)
Christine Tobler
on 23 Oct 2023
You can definitely use iterative methods such as pcg. The success of this usually depends on how well-conditioned your matrix is, or how good of a preconditioner you can come up with.
In terms of direct methods, consider using permuted Cholesky (the three-output syntax). The permutation allows reduction of fill-in in a sparse direct factorization in many cases - meaning you need less storage and less computation for the factor R, as it contains fewer nonzero elements.
You can also try the decomposition object (which uses permuted Cholesky, and additionally stores the factorization of A in the same internal format used in backslash, instead of converting it to a generic sparse matrix):
dA = decomposition(A);
x = dA \ b;
See Also
Categories
Find more on Eigenvalue Problems in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!