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

No compress keyword for `write`

Open carstenbauer opened this issue 7 years ago • 0 comments
trafficstars

Why ist it that I have to do

jldopen("test.jld", "r+", compress=true) do f
  write(f, "x", rand(Complex128, 2,2))
end

and can't do

jldopen("test.jld", "r+") do f
  write(f, "x", rand(Complex128, 2,2), compress=true)
end

I might wanna write multiple elements to file but only some of them should be compressed.

carstenbauer avatar Dec 22 '17 12:12 carstenbauer