reshaping in numpy code example
Example 1: Reshaping arrays python numpy
>>> np.reshape(a, (3,-1)) # the unspecified value is inferred to be 2
array([[1, 2],
[3, 4],
[5, 6]])
Example 2: reshape numpy
numpy.reshape(a, newshape, order='C')