I am not sure why I can not concatenate multiple dimensions of an array together using the the numpy.concatenate function. For example:
array_2d.shape = [1200,1200]
array2_2d.shape = [1200,1200]
final_array1 = numpy.concatenate((array_2d,array2_2d),axes=0) # shape = (2400,1200)
final_array2 = numpy.concatenate((array_2d,array2_2d),axes=1) # shape = (1200,2400)
Is there a way I can get the 2 arrays to concatenate both axes to yield a shape of (2400,2400)? Or am I just thinking of this approach incorrectly with the concatenation of arrays? Some help would be much appreciated!!!