Unable to load in Python hdf file saved using Igor pro

77 views Asked by At

The file is Imported with no problem in Wolfran Matematica

using Import['filename'] I get:

{"Amplitude", "trace #", "time (sec)"}

using Import['filename', {"Datasets", "time (sec)"}] I get the time data

When I try to uploaded using pandas or h5py it does'n work

In pandas I used: r = pd.read_hdf('filename')

In h5py I used: r = h5py.File('filename', 'r')

Both approaches give similar error messages, mainly:

Unable to open file (file signature not found)
# can't auto open/close if we are using an iterator so delegate to the iterator
0

There are 0 answers