I’m trying to read a subfolder from .mat file in Python using hdf5 package. I could extract the integers and values from the datase, but couldn’t read the strings.
result=matfile[“/pro/tttt/rrr”]
Return is a series of lists:
[[<HDF5 object reference>] [<HDF5 object reference>] [<HDF5 object reference>]]
I need to extract these strings and combine them with another column as its header. Any suggestions?