tbeu / matio

MATLAB MAT File I/O Library
https://matio.sourceforge.io
BSD 2-Clause "Simplified" License
341 stars 97 forks source link

datetime support ? #99

Open Nelson-numerical-software opened 5 years ago

Nelson-numerical-software commented 5 years ago
A = datetime(2011,12,13)
save('datetime-scalar.mat','A','-v7.3')

D = [datetime(2011,12,13); datetime(2012,1,14)];
save('datetime-matrix.mat','D','-v7.3')

data_type returns MAT_T_UNKNOWN

datetime is available since 2014

do you plan to support it ?

tbeu commented 5 years ago

Related to #98.

fmvin commented 1 year ago

Is any progress regarding reading datetime from mat? My be you could suggest some workaround?