Answers for "how to flaten a numpy array"

3

flatten numpy array

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
>>> a.flatten('F')
array([1, 3, 2, 4])
Posted by: Guest on December-08-2020

Code answers related to "how to flaten a numpy array"

Python Answers by Framework

Browse Popular Code Answers by Language