I know spio.loadmat
does not properly load symbolic variables created in Matlab into Python. But, I am wondering if anyone here has ever tried to load such .mat
files in Python using any sort of trick.
Loading symbolic variables from Matlab in Python
Asked Answered
© 2022 - 2024 — McMap. All rights reserved.
syms
is similar in purpose tosympy
symbols()
. – Cervixsavemat
andloadmat
is that they're designed for.mat
files produced by old MATLAB versions (see note at the end of this doc page). Nowadays it's probably better to read.mat
files using an HDF5 tool likeh5py
. – Wardwarde