You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When making my Julia code campatibile with the latest stable version 1.0.2, I have figured out some lines in "MAT_v5.jl" that were still not compatibile, so I have fixed them as follows:
Line 171: field_name_strings = Vector{String}(undef, n_fields)
Line 175: index = findfirst(isequal( 0), sname)
Line 193: data[field_name] = Array{Any}(undef, dimensions...)
Line 260: data = Vector{String}(undef, dimensions[1])
With these modifications at least my code works as before.
The text was updated successfully, but these errors were encountered:
When making my Julia code campatibile with the latest stable version 1.0.2, I have figured out some lines in "MAT_v5.jl" that were still not compatibile, so I have fixed them as follows:
Line 171:
field_name_strings = Vector{String}(undef, n_fields)
Line 175:
index = findfirst(isequal( 0), sname)
Line 193:
data[field_name] = Array{Any}(undef, dimensions...)
Line 260:
data = Vector{String}(undef, dimensions[1])
With these modifications at least my code works as before.
The text was updated successfully, but these errors were encountered: