Python Numpy ASArray_chkfinite Exemple de fonction de la fonction à un tableau
# welcome to softhunt.net
# Python program explaining
# numpy.asarray_chkfinite() function
import numpy as np
my_tuple = ([1, 2, 3], [4, 5, 6])
print ("Input tuple : \n", my_tuple)
out_arr = np.asarray_chkfinite(my_tuple, dtype ='int8')
print ("output array from input tuple : \n", out_arr)
Outrageous Ostrich