Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy asfarray Function Example List to float type array

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

import numpy as np
my_list = [1, 2, 3, 4, 5, 6]

print ("Input list : ", my_list)

	
out_arr = np.asfarray(my_list)
print ("output float type array from input list : 
", out_arr)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #asfarray #Function #Example #List #float #type #array
ADD COMMENT
Topic
Name
9+1 =