1

这是我的python代码。

>>import numpy as np
>>import scipy.io
>>exon = [ np.array([[1, 2], [3, 4], [5, 6]]), np.array([[7, 8], [9, 10]]) ]
>>obj_arr = np.zeros((2,), dtype=np.object)
>>obj_arr[0] = exon[0]
>>obj_arr[1] = exon[1]
>>scipy.io.savemat('/tmp/out.mat', mdict={'exon': obj_arr}, format='5')

但我收到一条错误消息

Traceback (most recent call last):
  File "save_mat.py", line 12, in <module>
    scipy.io.savemat('out.mat', mdict={'exon':obj_arr}, format='5')
TypeError: savemat() got an unexpected keyword argument 'format'

非常感谢您帮助解决问题。

维平 TS

4

1 回答 1

3

看起来您的 scipy.io.savemat() 没有使用“格式”关键字。看起来它是在 SciPy 0.7 中添加的,也许您需要升级?

于 2010-01-25T12:24:29.800 回答