次のコードを使用して、Python で MAT ファイルを読み込もうとしています。MATLAB で問題なく読み込むことができます。
from scipy.io import loadmat
test_filename = 'test_data.mat' #This is a struct
data =loadmat(test_filename, struct_as_record=True)
そのコードを実行すると、次のエラーが発生します。
Traceback (most recent call last):
File "C:\Users\mac389\workspace\nexUtils\src\qA.py", line 16, in <module>
data =loadmat(test_filename, struct_as_record=True)
File "C:\Python27\lib\site-packages\scipy\io\matlab\mio.py", line 175, in loadmat
matfile_dict = MR.get_variables(variable_names)
File "C:\Python27\lib\site-packages\scipy\io\matlab\mio5.py", line 272, in get_variables
hdr, next_position = self.read_var_header()
File "C:\Python27\lib\site-packages\scipy\io\matlab\mio5.py", line 224, in read_var_header
stream = BytesIO(dcor.decompress(data))
MemoryError
参考までに、test_data.mat は次のフィールドを含む構造体です (MATLAB コンソールから)。
version: 101
comment: 'molecular layer 4/17'
freq: 40000
tbeg: 0
tend: 1.3950e+003
events: {3x1 cell}
neurons: {50x1 cell}
waves: {102x1 cell}
contvars: {64x1 cell}
Test_data.mat は 217 MB です。私は4GBのRAMを持っています。SciPy 0.10.0 と NumPy 1.6.1 を使用しています。「struct_as_record」フィールドを変更しても何も起こりません。
フィールドがセル配列である構造体をロードするにはどうすればよいですか?