Appending to a JLD

Is there a good way to append variables to a JLD file?
The readme talks about save() but that seems to only save a number of variables at once, not incrementally.

Thanks!

1 Like

Sorry, nevermind. I think the jldopen syntax should work.

Actually, the append mode “a” seems to be commented out. Is it implemented?

you are on it, to add any extra “variables” to already existing JLD file do following

f = jldopen(filename, "r+")
write(f, "new_variable", new_variable)
close(f)
3 Likes

Thank you so much!