diff --git a/src/svd.jl b/src/svd.jl index ea9f279b..1fa5a719 100644 --- a/src/svd.jl +++ b/src/svd.jl @@ -150,8 +150,8 @@ and `V` is ``N \\times N``, while in the thin factorization `U` is ``M number of singular values. `alg` specifies which algorithm and LAPACK method to use for SVD: -- `alg = DivideAndConquer()` (default): Calls `LAPACK.gesdd!`. -- `alg = QRIteration()`: Calls `LAPACK.gesvd!` (typically slower but more accurate) . +- `alg = LinearAlgebra.DivideAndConquer()` (default): Calls `LAPACK.gesdd!`. +- `alg = LinearAlgebra.QRIteration()`: Calls `LAPACK.gesvd!` (typically slower but more accurate) . !!! compat "Julia 1.3" The `alg` keyword argument requires Julia 1.3 or later.