when trying
x=[0,1,3,4,6,1]
find(x.>3,x)
I always get the error:
ERROR: MethodError: `find` has no method matching find(::BitArray{1},
::Array{Int64,1})
Closest candidates are:
find(::Function, ::AbstractArray{T,N})
find(::BitArray{N})
find(::Union{DenseArray{T,N},SubArray{T,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}})
Am I doing sth plain wrong here?
