[Numpy-discussion] basic question about numpy arrays

Skipper Seabold jsseabold at gmail.com
Mon Aug 16 14:28:03 EDT 2010


On Mon, Aug 16, 2010 at 2:25 PM, gerardob <gberbeglia at gmail.com> wrote:
>
> I have a numpy array A , such that when i print A it appears:
>
> [[ 10.]
>  [ 20.]]
>
> I would like to have a one dimensional array B (obtained from A) such that
> B[0] = 10 and B[1]=20. It could be seen as the transpose of A.
>
> How can i obtain B = [10,20]  from A? I tried transpose(1,0) but it doesn't
> seem to be useful.
>

B = A.squeeze()

or

B = A.flatten()

would be two ways.

Skipper



More information about the NumPy-Discussion mailing list