It seems to me, that all variables are read before a table variable is reached.
e.g.:
data = loadmatfile(inPath, "-toStruct");
does work, and no error values/messages are returned.
However, data contains only variables which are stored before the “table-type variable”.
Variables that follow the “table-variable” are not read.
Checking the Scilab result with matfile_listvar I would like to get a confirmation if loadmatfile and /or `matfile_open’ do not support a Matlab - table variable.
Scanning the file with matfile_varreadnext I am able to read also variables “following” the “table-variable”. Does loadmatfile simply stop reading from a mat file when they can not read a variable?