Skip to content

Commit

Permalink
Update docstring of nullspace (#33767)
Browse files Browse the repository at this point in the history
* Update docstring of nullspace

* Update stdlib/LinearAlgebra/src/dense.jl

Co-Authored-By: Andreas Noack <[email protected]>
  • Loading branch information
baggepinnen and andreasnoack committed Nov 5, 2019
1 parent 2c187bd commit 2fcb1b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/LinearAlgebra/src/dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1363,8 +1363,8 @@ end
nullspace(M, rtol::Real) = nullspace(M; rtol=rtol) # to be deprecated in Julia 2.0
Computes a basis for the nullspace of `M` by including the singular
vectors of A whose singular have magnitude are greater than `max(atol, rtol*σ₁)`,
where `σ₁` is `M`'s largest singularvalue.
vectors of `M` whose singular values have magnitudes greater than `max(atol, rtol*σ₁)`,
where `σ₁` is `M`'s largest singular value.
By default, the relative tolerance `rtol` is `n*ϵ`, where `n`
is the size of the smallest dimension of `M`, and `ϵ` is the [`eps`](@ref) of
Expand Down

0 comments on commit 2fcb1b1

Please sign in to comment.