I am trying to use Getto import data saved as a .nb document. The problem is Getevaluates all expressions but only returns the last one.
How can I return other expressions from the document?
e.g.
A={1,2,3,4,5};
B=A^2;
C=Mean[B];
Save["test",{A,B,C}];
Get["test"]
The output is 11, but I also want B to be listed in the output.
I am not able to rearrange the .nb document as it would require rerunning the code (takes several days), or manually changing the data (very tedious with~5GB worth of data). Are there any alternative functions I might be able to use?
C- that's protected...) – ciao Aug 05 '15 at 04:48Table[Get["test"<>ToSting[i]<>".nb"]; B, {i,1,rep}]. Whererepis the number of replicate runs. – James Reeve Aug 07 '15 at 00:15