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 want to compress data that is not of the type Vector{UInt8}, but instead has the more complicated type Base.ReinterpretArray{UInt8, 1, Float64, Vector{Float64}, false}. This is still a 1-d array with UInt8 elements, and as such the codecs would not care about the difference.
Julia has the type DenseVector to describe arrays that are stored contiguously. It would be nice if you could update the API to allow DenseVectors instead of just Vectors.
The text was updated successfully, but these errors were encountered:
I want to compress data that is not of the type
Vector{UInt8}
, but instead has the more complicated typeBase.ReinterpretArray{UInt8, 1, Float64, Vector{Float64}, false}
. This is still a 1-d array withUInt8
elements, and as such the codecs would not care about the difference.Julia has the type
DenseVector
to describe arrays that are stored contiguously. It would be nice if you could update the API to allowDenseVector
s instead of justVector
s.The text was updated successfully, but these errors were encountered: