foreverallama
foreverallama
I think we can already load function handles already, but as a struct/dict. We could use another wrapper `MatlabFunction` for this, it's what SciPy (and matio) uses. I can take...
Can you add the type for `MatlabFunction` or something like that? The data would be a 1x1 struct in MATLAB or a Dict in Julia. I'm not very familiar with...
Lets keep it easy. Function handle serialization gets weird when they're nested or a handle to a classdef method
Variables of type duration, datetime, categorical, and table created in MATLAB 2024b cannot be read.
The issue is only with datetime in the newer versions, or other types as well?
Variables of type duration, datetime, categorical, and table created in MATLAB 2024b cannot be read.
Yeah, looks to be only in datetime. I don't understand how MATLAB is encoding data - some kind of precision is definitely stored in the complex part, but what? Anyways,...
Variables of type duration, datetime, categorical, and table created in MATLAB 2024b cannot be read.
So there seems to be 2 different problems here: 1. This is related to #212 and is because of an update to how MATLAB is writing metadata in MAT-files, particularly...
Variables of type duration, datetime, categorical, and table created in MATLAB 2024b cannot be read.
@ZhuWenhao-88 Could you share a MAT-file from the newer versions with the following script: ```matlab var1 = "hello"; var2 = datetime; var3 = "goodbye"; var4 = timetable(datetime, 1); var5 =...
Added write support for function handles * Removed standalone read test and incorporated it into `write.jl` as its easier to read then write. * Added constants for the `MATLAB_object_decode` attribute...
I think we could add a try-catch inside `read_opaque` (don't remember the method name exactly). If loading fails, then we simply return the metadata and display a warning. We would...
I think we can also add #176 here, looks like we currently do not support anything greater than 2D in `v5` at least. I'll try and take a look later...