Skip to content

Commit 2ece1cd

Browse files
authored
Fix error in the doc of nullspace (#42960)
1 parent dccf0af commit 2ece1cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/src/dense.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,7 @@ end
14641464
nullspace(M, rtol::Real) = nullspace(M; rtol=rtol) # to be deprecated in Julia 2.0
14651465
14661466
Computes a basis for the nullspace of `M` by including the singular
1467-
vectors of `M` whose singular values have magnitudes greater than `max(atol, rtol*σ₁)`,
1467+
vectors of `M` whose singular values have magnitudes smaller than `max(atol, rtol*σ₁)`,
14681468
where `σ₁` is `M`'s largest singular value.
14691469
14701470
By default, the relative tolerance `rtol` is `n*ϵ`, where `n`

0 commit comments

Comments
 (0)