JuliaIO / MAT.jl

Julia module for reading MATLAB files
MIT License
278 stars 71 forks source link

Updates v1.0 #94

Closed NoelAraujo closed 5 years ago

NoelAraujo commented 6 years ago

MAT.jl looks like is working with Julia 1.0 after some updates

NoelAraujo commented 6 years ago

Actually I forgot to commit two small changes. But I will post them here on the comments

Around line 57 in MAT.jl : magic = read!(rawfid, Vector{UInt8}(4)) changes to magic = read!(rawfid, Array{UInt8, 1}(undef, 4))

Around line 81 in MAT.jl: # if read!(rawfid, Vector{UInt8}(8)) == HDF5_HEADER changes to if read!(rawfid, Array{UInt8, 1}(undef, 8)) == HDF5_HEADER

yuyichao commented 5 years ago

Partially wrong and less complete than https://github.com/JuliaIO/MAT.jl/pull/86