We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks like AA redefines cat on basic Vector types:
cat
julia> using AxisArrays julia> ll = Array{Array{Symbol,1},1}() 0-element Array{Array{Symbol,1},1} julia> cat(ll..., dims=1) ERROR: BoundsError: attempt to access () at index [1] Stacktrace: [1] getindex(::Tuple{}, ::Int64) at ./tuple.jl:24 [2] _cat at /home/pablo/.julia/packages/AxisArrays/G6pZY/src/combine.jl:20 [inlined] [3] #cat#44(::Int64, ::Function) at /home/pablo/.julia/packages/AxisArrays/G6pZY/src/combine.jl:16 [4] (::getfield(Base, Symbol("#kw##cat")))(::NamedTuple{(:dims,),Tuple{Int64}}, ::typeof(cat)) at ./none:0 [5] top-level scope at none:0
The text was updated successfully, but these errors were encountered:
I should have said, this happens on 0.7.
Sorry, something went wrong.
You're right that it's redefining cat but it's cat(dims=1) that's being called.
cat(dims=1)
It's a simple tweak, I can fix it quickly.
No branches or pull requests
It looks like AA redefines
cat
on basic Vector types:The text was updated successfully, but these errors were encountered: