Hi,
I noticed that the "sub" function behaves differently in master and version
0.3.5, when handling data of type Array{Float64, 1}. I am not sure if the
change is intentional.
The following works as expected on Julia master:
*julia>* *sub([1.0; 2; 3; 4], 1:3, :)*
but, fails in version 0.3.5 with the following error:
> *ERROR: `sub` has no method matching sub(::Array{Float64,1},
> ::(UnitRange{Int64},UnitRange{Int64}))*
> * in sub at subarray.jl:80** in sub at subarray.jl:132*
Is this a bug in Julia 0.3.5 or master?
This came up in this pull request:
https://github.com/dancasimiro/WAV.jl/pull/20. I just figured out that my
"fix" is broken too.
Thanks.