How do you extract a column from a multi-dimensional array?

>>> import numpy as np
>>> A = np.array([[1,2,3,4],[5,6,7,8]])

>>> A
array([[1, 2, 3, 4],
    [5, 6, 7, 8]])

>>> A[:,2] # returns the third columm
array([3, 7])

See also: “numpy.arange” and “reshape” to allocate memory

Example: (Allocating a array with shaping of matrix (3×4))

nrows = 3
ncols = 4
my_array = numpy.arange(nrows*ncols, dtype="double")
my_array = my_array.reshape(nrows, ncols)

Leave a Comment