JLD.jl
JLD.jl copied to clipboard
Saving and loading julia variables while preserving native types
Getting this error when trying to load a file saved using JLD. Is the error legitimate, or am I doing something wrong? The source is located in my repository: https://github.com/56phil/julia0.git...
```julia julia> using JLD julia> save("test.jld", "x", rand(ComplexF64, 4)) julia> jldopen("test.jld") do f try println("reading everything") read(f["x"]) println("worked") catch println("failed") end try println("reading parts") read(f["x"], 4) println("worked") catch println("failed") end...
Appveyor
I had far too many projects running on my Appveyor account, and they were clogging my CI queue quite badly. I've removed this one from my account, so alternative arrangements...
Same problem as https://github.com/JuliaIO/JLD2.jl/issues/101, fixed with https://github.com/JuliaIO/JLD2.jl/pull/106 Steps to reproduce: ``` using FileIO, DataFrames df = DataFrame(rand(10,5)); save("dftest.jld", "df", df) load("dftest.jld", "df") >>> signal (11): Segmentation fault ```
I am having a weird error when running exactly the same function that write processed data in a .jld file. I am doing something like this : ``` func( param...
Hi, I had a perfect system until tonight. I did not change anything in my system and I did not update any package. When I try to use JLD package,...
Is future development encouraged to use https://github.com/simonster/JLD2.jl? If so, can it be mentioned in the README so that Google searches don't lead to a dead end package =). Alternatively, if...
Hi all, just noticed that JLD makes julia crash if you attempt to save a figure, it seems to go in an infinite error-loop. Minimal code: ``` using Plots, JLD...
I run the below code, which should work on your computer if you have all the packages installed. Basically it downloads some CSV from football-data.co.uk and tries to save it...
The type definition for `Nullable` changed from Julia [v0.5](https://github.com/JuliaLang/julia/blob/v0.5.1/base/base.jl) to [v0.6](https://github.com/JuliaLang/julia/blob/v0.6.0/base/base.jl). I have some `Nullable`s which I saved in a JLD file while running v0.5, and I'm now trying to...