Every line of 'numpy int to float' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
65 def numpy_to_cint(arr): 66 newarr = (c_int * len(arr))() 67 for i in range(len(arr)): 68 newarr[i] = int(arr[i]) 69 return newarr