JLD.jl
JLD.jl copied to clipboard
No compress keyword for `write`
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.