Alexander Luzgarev
Alexander Luzgarev
Thanks for creating the issue! The current way to check if a variable exists is go through the `IMatFile.Variables` array and test the `Name` property of the elements, which is...
Version 1.4.0-beta1 published on nuget.org contains this change. Feel free to test it.
Hi, unfortunately, neither datasets nor tables are supported at the moment. Datasets seem to be deprecated, so I don't think it makes sense for MatFileHandler to deal with them. It...
Version 1.3.0-beta1 adds preliminary support for Matlab objects, so now you can read table variables from .mat files. Writing support is possible, but is going to take more time.
I guess it wouldn't be too hard. The main problem for me was lack of examples of big-endian .mat files, since I don't think I have any big-endian systems handy....
Thanks for your feedback! I think Matlab 7.0 files are supported, as long as they only contain "ordinary" things like matrices, structure arrays, cell arrays, etc. However, reading Matlab "objects"...
It looks like this file is actually in Matlab 7.3 format. It was produced by libmatio rather than Matlab (and it incorrectly states that it's Matlab 7.0 in the comment)....
Thank you for the report! Looks like this file contains variables of some Simulink-specific types. MATLAB R2020b (without Simulink) actually refuses to read it. To be precise, it reads it,...
Thanks for opening the issue! I added the following methods to IArray: * `double[,]? ConvertTo2dDoubleArray();` * `Array? ConvertToMultidimensionalDoubleArray();` The 2-dimensional case is probably the most common, so I feel that...
@foreverallama Hi! Thanks for the information, this looks very interesting! I noticed some additional things while doing the latest beta with enumerations support, but I didn't update the description in...