-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anj/docldlt #13030
Anj/docldlt #13030
Conversation
doc""" | ||
ldltfact(A) -> F | ||
|
||
Compute an `LDLt` factorization `F` of a `SymTridiagonal` matrix `A` such that `A=L*Diagonal(d)*L'` where `L` is a unit lower triangular matrix and `d` is a vector. The main use of an `LDLt` factorization `F=ldltfact(A)` is to solving the linear system of equations `Ax=b` with `F\b`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be better to be consistent on whether LDLt
is quoted (see the other doc string in helpdb.jl
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I'll fix that.
Hold on with the comments. I messed up with the build sequence for the docs. Maybe, when you wake up tomorrow, I've managed to contribute to the documentation without breaking anything. |
0be7c4d
to
4c62c1c
Compare
4c62c1c
to
b22d6f7
Compare
lgtm. So is there no diagonal-D (modified Cholesky) edit: ref JuliaLang/LinearAlgebra.jl#203 for adding a generic julia implementation |
Yes. That is correct. |
backport candidate here? |
Yes |
backported in #13072 |
The
ldltfact
documentation was wrong. The other changes ended up here after a rebase so I added them with a new commit. Are they okay to include?