I am working with two different languages i.e. Matlab and python. I created 5 variables in Matlab. Each variable has a size- (150x1) cells as shown below:
Each cell has a size of (128 x (:)) as shown below:
I saved this workspace into a .mat file using -v7.3 which is a hdf5 format.
In python, I loaded the .mat file using h5py. I was able to load the variables but I am unable to extract the values from each variable.
I get this statement "array([[], dtype=object)" but the values are not loaded into the python workspace. I would like to load all the 150 cells o into a variable say A. How do I de-reference the hdf5 reference?