You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>rand(3,1)[[true,false,true]]
ERROR: BoundsError
in checkbounds at abstractarray.jl:130in anonymous at array.jl:303in getindex at array.jl:319
julia>rand(3,1)[[2]]
1-element Array{Float64,1}:0.980098
Works fine when indexing with a vector of indices into a matrix; linear logical indexing should work.
The text was updated successfully, but these errors were encountered:
Works fine when indexing with a vector of indices into a matrix; linear logical indexing should work.
The text was updated successfully, but these errors were encountered: