Answers for "how to flatten a numpy array"

1

python flatten array of arrays

import numpy as np
out = np.concatenate(input_list).ravel()
Posted by: Guest on July-29-2021
3

numpy flatten

>>> 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
1

flatten image python numpy

x_data = np.array( [np.array(cv2.imread(imagePath[i])) for i in range(len(imagePath))] )

  pixels = x_data.flatten().reshape(1000, 12288)
  print pixels.shape
Posted by: Guest on September-10-2020
0

flat numpy array

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
Posted by: Guest on July-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language