Skip to content

Commit 5f427c7

Browse files
committed
Improve find() deprecation for multidimensional arrays
findall() returns cartesian indices (except for vectors), while find() returned linear indices.
1 parent cca1261 commit 5f427c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

base/deprecated.jl

+4
Original file line numberDiff line numberDiff line change
@@ -1245,6 +1245,10 @@ end
12451245
@deprecate findin(a, b) findall(occursin(b), a)
12461246

12471247
@deprecate find findall
1248+
@deprecate find(A::AbstractVector) findall(A)
1249+
@deprecate find(A::AbstractArray) LinearIndices(A)[findall(A)]
1250+
@deprecate find(f::Function, A::AbstractVector) findall(f, A)
1251+
@deprecate find(f::Function, A::AbstractArray) LinearIndices(A)[findall(f, A)]
12481252

12491253
@deprecate findn(x::AbstractVector) (findall(!iszero, x),)
12501254
@deprecate findn(x::AbstractMatrix) (I = findall(!iszero, x); (getindex.(I, 1), getindex.(I, 2)))

0 commit comments

Comments
 (0)