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

18 次查看(过去 30 天)
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 个评论
Torsten
Torsten 2022-1-13
编辑:Torsten 2022-1-13
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.

请先登录,再进行评论。

采纳的回答

Christine Tobler
Christine Tobler 2022-1-13
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.

更多回答(1 个)

Bruno Luong
Bruno Luong 2022-1-13
编辑:Bruno Luong 2022-1-13
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 个评论
Michael Loibl
Michael Loibl 2022-1-14
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by