Well, I admit that I'm a python lover, although Julia is starting to grow on me. Since the old python user has a Julia package that can convert arrays to numpy npz files and then read them as well. Example:
x = reshape(1:27, 3,3,3) Pkg.add("NPZ") using NPZ npzwrite("TEST.npz",x)
And now I can later download this file (while I am using the NPZ package):
y = npzread("TEST.npz")
jfish003
source share