MAT.jl icon indicating copy to clipboard operation
MAT.jl copied to clipboard

Julia module for reading MATLAB files

Results 59 MAT.jl issues
Sort by recently updated
recently updated
newest added

MWE: In Matlab create struct with 3D char array and save as .mat ```matlab c1 = ['abc'; 'abc']; char_array3D = cat(3, c1, c1) s = struct('c', char_array3D) save('s.mat', 's') ```...

The current behavior for `CompositeKind` data is https://github.com/JuliaIO/MAT.jl/blob/355bd1a901730ad5713b3283f6ec66603c72dfd9/src/MAT_HDF5.jl#L529-L536 however, there are issues with the `isbits(s)` test, reported in #162,#143 or with simple user types such as ```julia struct MyType field1::Int64...

Hello, The previous grad student had a bunch of .mat files (v5) that were saved with a custom matlab struct. I can open them up using Matlab on a colleagues...

this just a package for read/write mat file. How to use mat file,load functions or modules in julia? can you help me ?

Is there any solution to read ".mat" (v4) format?

We currently support only MAT level 5, but MAT level 4 shouldn't be too hard

MAT.jl v0.10.1 seems to fail with this call ``` D = Dict("num" => rand(), "vec" => rand(2), "mat" => rand(3, 3), "str" => "abc", "chr" => 'A', ) fname =...

I have two string arrays stored in a MAT file named test3.mat. They can be read out easily within Matlab, but I’m having big trouble reading them out in Julia....

Probably a feature request. I see that compress is true false on the interface but once it gets to the HDF5 it is set to an integer. It would be...

``` julia> using MAT julia> matwrite("foo.mat", Dict("x"=>trues(1))) julia> matread("foo.mat") Dict{String, Any} with 1 entry: "x" => true julia> matwrite("foo.mat", Dict("x"=>trues(2))) julia> matread("foo.mat") Dict{String, Any} with 1 entry: "x" => Bool[1,...