Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy asfarray Function Example Tuple to float type array

# welcome to softhunt.net
# Python program explaining
# numpy.asfarray() function

import numpy as np

my_tuple = ([1, 2, 3], [4, 5, 6])

print ("Input tuple : ", my_tuple)
	
out_arr = np.asfarray(my_tuple, dtype ='int8')
print ("output float type array from input tuple : 
", out_arr)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #asfarray #Function #Example #Tuple #float #type #array
ADD COMMENT
Topic
Name
7+5 =