如何使用ndarray
函数mat
将多个scipy
保存到一个savemat
文件中?我想知道我是否有两个矩阵调用A
和B
,我可以将它们保存到一个result.mat
,如下所示:
sio.savemat('result.mat', {'A':A})
sio.savemat('result.mat', {'B':B})
我做了,然后在MATLAB中打开result.mat
,只找到矩阵B
... A
被覆盖。有帮助吗?
答案 0 :(得分:1)
In [436]: with open('test.mat','wb') as f: # need 'wb' in Python3
savemat(f, {'A':np.arange(10)})
savemat(f, {'B':np.ones((3,3))})
.....:
In [437]: loadmat('test.mat')
Out[437]:
{'A': array([[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]]),
'__version__': '1.0',
'B': array([[ 1., 1., 1.],
[ 1., 1., 1.],
[ 1., 1., 1.]]),
'__globals__': [],
'__header__': b'MATLAB 5.0 MAT-file Platform: posix, Created on: Fri May 13 16:38:04 2016'}