Slightly technical coding question, #Matlab to #Python:
What's the simplest way to read a Matlab table in Python?
Or, if that's not possible, what should I convert my Matlab table to so I can read it in python? 馃檹
It's quite a big table with "nested" data i.e. some of the columns contain different-lengths arrays for each row and some contain matrices.
Links I've tried without success:
https://stackoverflow.com/questions/25853840/load-matlab-tables-in-python-using-scipy-io-loadmat (csv doesn't save all the data)
https://pythonguides.com/python-scipy-load-mat-file/ (about reading .mat files but does not seem to work with tables)
Links I haven't tried:
https://www.mathworks.com/help/matlab/matlab_external/use-matlab-tables-and-timetables-in-python.html (I believe this relies on having a working version of Matlab to use Matlab.engine to read the file, which kinds of defeats the purpose)