Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy asfortranarray Function Tuple to an array

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

import numpy as np

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

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