Answers for "save a numpy into a text"

C
0

save strings with numpy savetext

np.savetxt('test.txt', DAT, delimiter=" ", fmt="%s")
Posted by: Guest on September-23-2021
-2

save numpy array to text file

a_file = open("test.txt", "w")
for row in an_array:
    np.savetxt(a_file, row)

a_file.close()
Posted by: Guest on February-10-2021

Code answers related to "save a numpy into a text"

Code answers related to "C"

Browse Popular Code Answers by Language