09-14-2022 03:47 AM
# array_to_numpy.py
import numpy as np def array_to_numpy(A): An = np.sum(A, axis = 0).astype('uint16') return An