mldivide (backslash): advantage by using sparse matrix instead of a full matrix with respect to the quality of the results?

13 vues (au cours des 30 derniers jours)
I am solving a linear system of equations Ax = B with the backslash operator. I have two versions of A implemented: a sparse and a full matrix.
Sometimes I get the warning that my matrix is close too singular. However, I get it more seldom if I am using sparse matrices. Is there a reason for it? Does this mean that the results are more reliable using sparse matrices?
When I compute the condition number for both cases using the command condest(A), I obviously get the same result for the sparse and the full matrix. I have an example where condest(A) = 3.65e27 which is of course very high. However, I get only a warning that the matrix is close too singular in the case of the full matrix. Does this make sense? Can I conclude that the solution is better for the sparse matrix since I do not get a warning?
  1 commentaire
Torsten
Torsten le 13 Jan 2022
Modifié(e) : Torsten le 13 Jan 2022
Just computing the residual A*X - B should answer your question.
I can't imagine that the reliability depends on whether you use the sparse or full option.
Maybe the internal limit to give a warning is differently implemented.

Connectez-vous pour commenter.

Réponse acceptée

Christine Tobler
Christine Tobler le 13 Jan 2022
The condition estimate used in mldivide to decide if a warning should be given is much less accurate for the sparse case. This is simply because it could get very expensive to compute in the sparse case, so we use a cheap heuristic.
So for sparse matrices, the result from condest should be trusted much more than whether a warning is given in mldivide.

Plus de réponses (1)

Bruno Luong
Bruno Luong le 13 Jan 2022
Modifié(e) : Bruno Luong le 13 Jan 2022
If your condition is 3.65e27 you wi=on't get any reliable solution regardless the method.
The full matrix use QR with permutation and detect the conditioning issue better than sparse. MATLAB try to prevent sparse structure so it might not detect as well conditioning issue.
No I disagree with Torsen, for ill conditining system you can get wrong result even if the residual norm |A*x-b| is small. I can also guess the residual is smaller if you use full-sover, but it doesn't mean the solution is good.
  7 commentaires
Michael Loibl
Michael Loibl le 14 Jan 2022
Thank you. I won some new insights. Thank you very much for the illustrative example.
I was aware that a condition number of 1e27 is very bad. Before I thougt that I could simply trust the warnings from Matlab and lean back. When I started computing with sparse matrices, I often did not get warnings, but I started checking for the conditioning by myself. In consequence, I will add a check for the conditioning by myself now for the sparse case.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Operating on Diagonal Matrices dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by