Skip to content

Commit faf1892

Browse files
stevengjLilithHafner
authored andcommitted
cross-ref bunch-kaufman to ldlt docs (JuliaLang#43968)
1 parent dcffe2c commit faf1892

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stdlib/LinearAlgebra/src/ldlt.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,12 @@ end
129129
"""
130130
ldlt(S::SymTridiagonal) -> LDLt
131131
132-
Compute an `LDLt` factorization of the real symmetric tridiagonal matrix `S` such that `S = L*Diagonal(d)*L'`
132+
Compute an `LDLt` (i.e., ``LDL^T``) factorization of the real symmetric tridiagonal matrix `S` such that `S = L*Diagonal(d)*L'`
133133
where `L` is a unit lower triangular matrix and `d` is a vector. The main use of an `LDLt`
134134
factorization `F = ldlt(S)` is to solve the linear system of equations `Sx = b` with `F\\b`.
135135
136+
See also [`bunchkaufman`](@ref) for a similar, but pivoted, factorization of arbitrary symmetric or Hermitian matrices.
137+
136138
# Examples
137139
```jldoctest
138140
julia> S = SymTridiagonal([3., 4., 5.], [1., 2.])

0 commit comments

Comments
 (0)