Skip to content

Commit 797a24d

Browse files
fredrikekreKristofferC
authored andcommitted
Some more compat annotations (#30297)
* Compat annotation for unique!(f, A), #30141. Compat annotation for rank(A; rtol=..., atol=...), #29926. * Update stdlib/LinearAlgebra/src/generic.jl (cherry picked from commit 4fc446f)
1 parent b55b85c commit 797a24d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

base/set.jl

+3
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ end
184184
Selects one value from `A` for each unique value produced by `f` applied to
185185
elements of `A` , then return the modified A.
186186
187+
!!! compat "Julia 1.1"
188+
This method is available as of Julia 1.1.
189+
187190
# Examples
188191
```jldoctest
189192
julia> unique!(x -> x^2, [1, -1, 3, -3, 4])

stdlib/LinearAlgebra/src/generic.jl

+6-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ end
713713

714714
"""
715715
rank(A::AbstractMatrix; atol::Real=0, rtol::Real=atol>0 ? 0 : n*ϵ)
716-
rank(A::AbstractMatrix, rtol::Real) = rank(A; rtol=rtol) # to be deprecated in Julia 2.0
716+
rank(A::AbstractMatrix, rtol::Real)
717717
718718
Compute the rank of a matrix by counting how many singular
719719
values of `A` have magnitude greater than `max(atol, rtol*σ₁)` where `σ₁` is
@@ -722,6 +722,11 @@ tolerances, respectively. The default relative tolerance is `n*ϵ`, where `n`
722722
is the size of the smallest dimension of `A`, and `ϵ` is the [`eps`](@ref) of
723723
the element type of `A`.
724724
725+
!!! compat "Julia 1.1"
726+
The `atol` and `rtol` keyword arguments requires at least Julia 1.1.
727+
In Julia 1.0 `rtol` is available as a positional argument, but this
728+
will be deprecated in Julia 2.0.
729+
725730
# Examples
726731
```jldoctest
727732
julia> rank(Matrix(I, 3, 3))

0 commit comments

Comments
 (0)