a = zeros (3,3,3)
for i = 1:27
a [i] = i
end
I see , but:
t = 15 z = [1,3] @save "mydata.jld" t z
inside i have two variables: "t" "z" , nice...
now a need add next var (A) to the file
A=100;
file = jldopen("mydata.jld", "w") @write file A close(file)
unfortunatly A removed vars "t" and "z" :/
Paul
file = jldopen("mydata.jld", "r+") @write file A close(file)