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
I hope to support tuple methods, because tuple vectors are very efficient in Julia. In many cases, tuple vectors Vector{Tuple{Float64, Float64, Float64}} are used instead of Vector{Vector{Float64}}, but errors occur when saving tuples
matwrite("matfile.mat", Dict("tu"=>(1,2,3)))
matwrite("matfile.mat", Dict("tu"=>(1,2,3)))
ERROR: This is the write function for CompositeKind, but the input doesn't fit
The text was updated successfully, but these errors were encountered:
I hope to support tuple methods, because tuple vectors are very efficient in Julia. In many cases, tuple vectors Vector{Tuple{Float64, Float64, Float64}} are used instead of Vector{Vector{Float64}}, but errors occur when saving tuples
The text was updated successfully, but these errors were encountered: