Although Vector{Array{Float64}} works, be aware that it is specifying a
vector of the abstract type Array{Float64} (any dimension allowed).
In general this is not recommended. It is better to specify a concrete type
where possible.
In your case, this probably means Vector{Vector{Float64}}.
On Tuesday, July 19, 2016 at 8:12:36 AM UTC+10, Ferran Mazzanti wrote:
> Hi Mauro,
> your solution seems to work... though I do not understand exactly why :)
> Even Vector{Array{Float64}} works.
> Thanks for your kind help :)
> Ferran.
>