Answers for "python save 2d matrix to mat file"

16

np.save function

np.save('data.npy', num_arr) # save
new_num_arr = np.load('data.npy') # load
Posted by: Guest on July-27-2020
1

save np array as mat file

scipy.io.savemat('test.mat', {'mydata': mydata})
Posted by: Guest on February-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language