Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 19 down vote accepted

The line should be:

numpy.concatenate([a,b])

The arrays you want to concatenate need to passed in as a sequence, not as seperate arguments.

From the numpy docs:

numpy.concatenate((a1, a2, ...), axis=0)ΒΆ

Join a sequence of arrays together.

It was trying to interpret your b as the axis parameter, which is why it complained it couldn't convert it into a scalar.

share|improve this answer

The first parameter to concatenate should itself be a sequence of arrays to concatenate:

numpy.concatenate((a,b)) # note the extra parens
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.