python numpy array change axis

Solutions on MaxInterview for python numpy array change axis by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "python numpy array change axis"
Lucia
04 Jun 2018
1>>> x = np.array([[1,2,3]])
2>>> np.swapaxes(x,0,1)
3array([[1],
4       [2],
5       [3]])
6