Thanks for the reply.I don't have any problem since I can convert the list to arrays anytime. It is just strange that I used to get the list of arrays before. Thank you,JoonHi,Yes, ret
Hi,
Yes, retrieving a list of lists is what is expected in this case. The
flavor implementation in PyTables is not very sofisticated, so it detected a
list and it returns a list (of lists in this case), no matter what it is
made of.
If this is not what you want, you will need to do an additional
Hi,I used to save a list of arrays (a list with its elements being numpy arrays) to hdf5 files and load them without any problems.Today I found that if I save the list of arrays, PyTables converts the array elements of the list into lists. So when I load the data I get list of lists.I actually d