Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

remove axis numpy array

x = np.array([[[0], [1], [2]]])
x.shape
(1, 3, 1)
np.squeeze(x).shape
(3,)
np.squeeze(x, axis=0).shape
(3, 1)
np.squeeze(x, axis=1).shape
Source by numpy.org #
 
PREVIOUS NEXT
Tagged: #remove #axis #numpy #array
ADD COMMENT
Topic
Name
1+2 =