Re: [julia-users] Troubles saving/loading data (HDF5 / JLD)

2014-03-12 Thread Tim Holy
Sorry for the delay in dealing with this. If you do Pkg.update(), it should be fixed now. --Tim On Monday, March 10, 2014 03:21:01 PM Zachary Roth wrote: I'm having some trouble loading saved data, and I haven't had any luck in looking for solutions online. I've reduced the code to as short

[julia-users] Troubles saving/loading data (HDF5 / JLD)

2014-03-10 Thread Zachary Roth
I'm having some trouble loading saved data, and I haven't had any luck in looking for solutions online. I've reduced the code to as short of an example as I could: using HDF5, JLD type Test values::Vector{Integer} end x = Test([]) @save test.jld x @load test.jld x When I run the above