Re: [julia-users] How to save sparse in HDF5? ERROR: no method write(HDF5File, ASCIIString, SparseMatrixCSC{Int64,Int64})

2014-08-17 Thread paul analyst
Thx, this function is faster in RAM, ;) But in SWAP not, like all other;) Paul W dniu piątek, 15 sierpnia 2014 16:06:28 UTC+2 użytkownik Tim Holy napisał: > > Use JLD, not HDF5. HDF5 is only for very basic types, or reading HDF5 > files > written from other languages. > > --Tim > > On Thursda

Re: [julia-users] How to save sparse in HDF5? ERROR: no method write(HDF5File, ASCIIString, SparseMatrixCSC{Int64,Int64})

2014-08-15 Thread Tim Holy
Use JLD, not HDF5. HDF5 is only for very basic types, or reading HDF5 files written from other languages. --Tim On Thursday, August 14, 2014 11:21:20 PM paul analyst wrote: > How to save sparse in HDF5? > julia> D=sparse(I,J,V); > julia> h5write("D.h5","D", D); > ERROR: no method write(HDF5File,

[julia-users] How to save sparse in HDF5? ERROR: no method write(HDF5File, ASCIIString, SparseMatrixCSC{Int64,Int64})

2014-08-14 Thread paul analyst
How to save sparse in HDF5? julia> D=sparse(I,J,V); julia> h5write("D.h5","D", D); ERROR: no method write(HDF5File, ASCIIString, SparseMatrixCSC{Int64,Int64}) in h5write at C:\Users\SAMSUNG2\.julia\v0.3\HDF5\src\plain.jl:527 Paul