On Tuesday, August 20, 2013 04:50:34 PM Aaron Ponti wrote:
> I guess what I suggested will just dump my data into a vector of some type
> default type. I need to by able to write a 3-D array of Float64 to disk
> preserving its dimensions. I was looking into the HDF5 module now (
>
https://github.com/timholy/HDF5.jl) and I cried a bit since I need to run
> it on Windows...
Out of curiosity, why did you cry? The installation instructions? I didn't
think they were that complicated?
> but I guess I will give it a try. It really amazes me,
> though, that there is no native method in Julia to read and write variables
> from and to disk.
MATLAB uses HDF5 also, it's just that they bundle it with Matlab. I suppose we
could do that too, and save people the trouble of installing it.
In my experience, JLD really is just like matlab's save/load commands; I've
been using it a lot lately, with nary a hiccup. One advantage over Matlab is
that it is much more performant for things like large arrays. (My work on
Julia's HDF5 inspired this submission:
http://www.mathworks.com/matlabcentral/fileexchange/39721)
--Tim