convert a python numpy array to a list
March 2nd, 2011 by Lawrence David
to convert a numpy array to a list, use the .tolist() method built into the array class:
my_list = my_array.tolist()
March 2nd, 2011 by Lawrence David
to convert a numpy array to a list, use the .tolist() method built into the array class:
my_list = my_array.tolist()