MatFileHandler
MatFileHandler copied to clipboard
MATLAB .mat-file reading/writing API for .NET Standard
I couldn't find a MatFileHandler native way to handle conversion of 2-dimensional jagged arrays into an IArray representing a MATLAB matrix, so I coded this simple extension method that could...
Hello, How big would the effort be, to add byte swapping to load files with a different endianness?
There doesn't seem to be an easy way to check if a variable exists in a given file, and unfortunately the `IMatFile` indexer throws an exception when a variable does...
Hello, When I try to execute my compiled code I'm getting the following error when I try to make the call of IMatfile.write. Could not load file or assembly 'System.ValueTuple,...
Would it be possible to have a functions similar to `IArray.ConvertToDoubleArray` returning arrays of the right dimensions? Currently one needs to know how the file format orders multidimensional data into...
While reading of this simple mat file [matlab.zip](https://github.com/mahalex/MatFileHandler/files/6552061/matlab.zip) I get an IndexOutOfRangeException at MatFileReader.Read(). Stack trace is: ``` at MatFileHandler.SubsystemDataReader.GatherClassAndObjectInformation(Dictionary`2 classIdToName, String[] fieldNames, Dictionary`2 objectClasses, Dictionary`2 objectPositionsToValues, Dictionary`2 embeddedObjectPositionsToValues) at...
It would be nice to provide more "native" support for MATLAB's "enumeration classes" (if that's possible), a la existing support for datetime objects, strings, etc. Currently objects of "enumeration classes"...
I am wondering how to write a MatLab dataset or perhaps a table variable to a .mat file. An example or guidelines would be much appreciated.