Matthijs Cox
Matthijs Cox
Variables of type duration, datetime, categorical, and table created in MATLAB 2024b cannot be read.
I've created the test file for you (renamed to .txt for github) ``` var1 = "hello"; var2 = datetime; var3 = "goodbye"; var4 = timetable(datetime, 1); var5 = datetime; var6...
Yeah the difference between char array and string is annoying. high-dimensional char arrays are weird anyway. Currently a 3-D char array becomes a 2-D String matrix (v7.3), where the 2nd...
Personally I think the N-D char arrays are a niche MATLAB thing, I think very few people care about them, so it shouldn't matter too much. Being able to load...
The `OrderedDict` is still on my mind ever since I learned the `MatlabClassObject` writing requires the fields to be in order. So it might actually be a good idea to...
Note this is purely a MAT v7 thing for certain characters like α and β. When you save with `save('test.mat', 'str', '-v7.3')` it works fine. When you try to save...
Note that behavior is different for v7.3 (HDF5 format). ``` save('s.mat', 's', '-v7.3') ``` Now I get UInt16 arrays ``` julia> matread("s.mat")["s"]["c"] 2×3×2 Array{UInt16, 3}: [:, :, 1] = 0x0061...