File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
125124For non-Hermitian eigenvalue decomposition and Schur decomposition, the `balanced`
126125keyword 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+
132132The optional `driver` keyword can be used to choose between different implementations of this algorithm.
133133"""
134134@algdef QRIteration
@@ -165,7 +165,6 @@ $_fixgauge_docs
165165The 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])
You can’t perform that action at this time.
0 commit comments