I generated a 2d random array in $x-y$ plane with
L = 10;
random = Table[{x, y, RandomReal[{-1, 1}]}, {x, 0, L, L/10}, {y, 0, L, L/10}];
Now I want to save it for the next using by
iniF = Interpolation[Flatten[random, 1]];
inif[x_, y_] = c+iniF[x, y];
where $c$ is constant. How do you save the random data with a convenient format? Thank you!
random? – vapor Jun 27 '16 at 05:35randomof the memory. But after I close the notebook, orClearAll, it is lost and I need to re-generate a random array. Here, I want to saverandomin a certain kind ofdatafile in my disk for the next access. Thanks! – lxy Jun 27 '16 at 07:08Export– Sektor Jun 27 '16 at 07:11random, it's still there. – xzczd Jun 27 '16 at 07:23