Concatenating arrays in Julia
Use the vcat and hcat functions: julia> a, b = [1;2;3], [4;5;6] ([1,2,3],[4,5,6]) help?> vcat Base.vcat(A…) Concatenate along dimension 1 julia> vcat(a, b) 6-element Array{Int64,1}: 1 2 3 4 5 6 help?> hcat Base.hcat(A…) Concatenate along dimension 2 julia> hcat(a, b) 3×2 Array{Int64,2}: 1 4 2 5 3 6