How can I concatenate two-dimensional arrays in Julia?
They are of type Array{UInt8, 2}
.
I have tried hvcat()
, but I get the error message
LoadError: MethodError: no method matching hvcat(::Array{UInt8,2}, ::Array{UInt8,2})
Any help would be much appreciated.
How exactly do you want to concatenate them? The following, for example, both work:
Two 2-D arrays of type
UInt8
can be concatenated like this: