私はstruct配列MathWorks社のMATLABで作成され、V7.3形式マットファイルに保存されているがあります。h5py経由でv7.3マットファイルを読むには?
struArray = struct('name', {'one', 'two', 'three'},
'id', {1,2,3},
'data', {[1:10], [3:9], [0]})
save('test.mat', 'struArray', '-v7.3')
今私はh5pyを使ってPythonを経由して、このファイルを読みたい:
data = h5py.File('test.mat')
struArray = data['/struArray']
私は見当がつかない私は通訳を発射し、01でhelp
を実行することによって開始する
for index in range(<the size of struArray>):
elem = <the index th struct in struArray>
name = <the name of elem>
id = <the id of elem>
data = <the data of elem>
このため、実際の解決策を見つけますか? – Pastafarian
私は同様の疑問があり、部分的な解決策がありました。http://stackoverflow.com/questions/29852481/reading-all-variables-in-a-mat-file-with-python-h5py/29856030#29856030 – CodyF