Ho un array di struct creato da MATLAB e memorizzati in file di formato v7.3 mat:Come leggere un file mat v7.3 tramite h5py?
struArray = struct('name', {'one', 'two', 'three'},
'id', {1,2,3},
'data', {[1:10], [3:9], [0]})
save('test.mat', 'struArray', '-v7.3')
Ora voglio leggere questo file tramite Python usando h5py:
data = h5py.File('test.mat')
struArray = data['/struArray']
ho idea come ottenere i dati struct uno per uno da struArray
:
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>
Hai trovato una soluzione reale per questo? – Pastafarian
avevo una domanda simile, con una soluzione parziale: http://stackoverflow.com/questions/29852481/reading-all-variables-in-a-mat-file-with-python-h5py/29856030#29856030 – CodyF