Is it possible to file jld only read range ? Without reading the entire file into memory ?
julia> using HDF5,JLD
julia> load("C1o2.jld","C1","(1,1)")
julia> load("C1o2.jld","C1")[1:1]
Above methods ar reading all file .
Paul
Is it possible to file jld only read range ? Without reading the entire file into memory ?
julia> using HDF5,JLD
julia> load("C1o2.jld","C1","(1,1)")
julia> load("C1o2.jld","C1")[1:1]
Above methods ar reading all file .
Paul