Python Numpy AsfortranArray Fonction scalaire à un tableau
# welcome to softhunt.net
# Python program explaining
# numpy.asfortranarray() function
import numpy as np
my_scalar = 50
print ("Input scalar : ", my_scalar)
out_arr = np.asfortranarray(my_scalar, dtype ='float')
print ("output fortan array from input scalar : ", out_arr)
Outrageous Ostrich