I have two simply one-dimensional arrays in numpy. I should be able to concatenate them using numpy.concatenate. But this is what I get
import numpy
a = numpy.array([1,2,3])
b = numpy.array([5,6])
numpy.concatenate(a,b)
TypeError: only length-1 arrays can be converted to Python scalars
Why?