Skip to content

Commit bb97d2a

Browse files
committed
docs update
1 parent e19e9de commit bb97d2a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/interface/decompositions.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ See also [`DivideAndConquer`](@ref) and [`QRIteration`](@ref).
118118
"""
119119
QRIteration(; [driver], fixgauge = default_fixgauge(), balanced = false)
120120
121-
Algorithm type for computing the eigenvalue decomposition of a Hermitian matrix,
122-
the singular value decomposition of a general matrix, the non-Hermitian eigenvalue
123-
decomposition, or the Schur decomposition of a general matrix via QR iteration.
121+
Algorithm type for computing the eigenvalue, Schur or singular value decomposition of a matrix via QR iteration.
122+
124123
125124
For non-Hermitian eigenvalue decomposition and Schur decomposition, the `balanced`
126125
keyword argument can be used to enable balancing of the matrix before the QR iteration,
@@ -129,6 +128,7 @@ which can improve numerical accuracy for badly scaled matrices:
129128
- `balanced = true`: use the expert balanced driver (`geevx!`/`geesx!`)
130129
131130
$_fixgauge_docs
131+
132132
The optional `driver` keyword can be used to choose between different implementations of this algorithm.
133133
"""
134134
@algdef QRIteration
@@ -165,7 +165,6 @@ $_fixgauge_docs
165165
The optional `driver` keyword can be used to choose between different implementations of this algorithm.
166166
"""
167167
@algdef RobustRepresentations
168-
Base.@deprecate_binding MultipleRelativelyRobustRepresentations RobustRepresentations false
169168

170169
"""
171170
SVDViaPolar(; [driver], fixgauge = default_fixgauge(), [tol])

0 commit comments

Comments
 (0)