np array save code example
Example 1: np.save function
np.save('data.npy', num_arr) # save
new_num_arr = np.load('data.npy') # load
Example 2: save numpy array
x = np.arange(10)
np.save(outfile, x)
Example 3: save numpy array
np.save("sim1.npy", sim)