vcat
vcat(A...)
Concatenate along dimension 1
Examples
julia> foo = Array(Int8,2,2)
2x2 Array{Int8,2}:
2 0
0 0
julia> bar = Array(Int8,2,2)
2x2 Array{Int8,2}:
-93 -111
62 5
julia> vcat(foo,bar) # equivalent to [foo; bar]
4x2 Array{Int8,2}:
2 0
0 0
-93 -111
62 5
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.