linsolve behaviour for SYM true and POSDEF false

83 次查看(过去 30 天)
Does linsolve use an LDL factoring if the options are SYM true and POSDEF false?
  7 个评论
Torsten
Torsten 2024-9-30,10:04
编辑:Torsten 2024-9-30,10:19
linsolve will use the same solver as mldivide if you specify that your matrix is symmetric indefinite, and according to the flowchart of solvers under
mldivide would use LU for full matrices and LDL for sparse matrices. But better you recheck the yes/no cases in the two flowcharts in the "Algorithms" section.
To be sure you could also contact MATLAB support directly:
Sylvan Elhay
Sylvan Elhay 2024-9-30,12:20
Thanks for all the comments.
Background: I am comparing computation times for solution of 2 sparse systems: one is SYM, INDEF and invertible and the other is square and invertible. I am now comparing the times of LU and LDL so there is no checking of matrix structure by Matlab before solving and the timings reflect only the solution process times.
Thanks again.

请先登录,再进行评论。

回答(1 个)

Vandit
Vandit 2024-9-29,8:57
编辑:Vandit 2024-9-29,9:01
Hello Sylvan,
The "linsolve" function does not use LDL factorization if the options are set to 'SYM' true and 'POSDEF' false. Instead, it will use the appropriate solver based on the properties specified in the options structure. If 'SYM' is true, it will typically use a method suitable for symmetric matrices, but without the positive definiteness condition, it won't specifically apply LDL factorization.
For more information on "linsolve" function, please refer to the below documentation:
Hope this helps.
  2 个评论
Sylvan Elhay
Sylvan Elhay 2024-9-29,9:15
I guess it does answer the question. Thank you. What I really should have asked is "which factoring does linsove use in that case?"
Sylvan Elhay
Sylvan Elhay 2024-9-29,9:17
I ask because I could not see an answer to that question in the documentation.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by