How to convert Array/Vector{Array{Float64,2}} into an Array{Float64,2} OR how to create plots from them?

Hi! How about this?

a = [Matrix([rand() for i=1:8]') for j=1:3] # Array{Array{Float64,2},1}
b = reduce(vcat,a) # Array{Float64,2}
1 Like