I want to automatically evaluate my simulation results with a python script, but struggle to open the .mat-Files in a meaningful way.
Opening the files with scipy.loadmat doesn't seem to be a viable option:
from scipy.io import loadmat
x = loadmat(path)
Should I implicitly return the values I want to analyse with my python simulation script or is there another way of loading .mat-Results with Python?
What do you use for such tasks? Matlab is not an option sadly.