RE: 3d table or list to file
- To: mathgroup at smc.vnet.net
- Subject: [mg34949] RE: [mg34879] 3d table or list to file
- From: "Ingolf Dahl" <f9aid at fy.chalmers.se>
- Date: Sat, 15 Jun 2002 02:27:31 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Just another method, that I like: threedlist={1,{2,{3,4}}}; resultfile = "c:/restest.txt"; Open[resultfile]; WriteString[resultfile, StringForm["threedlist = ``;\n", InputForm[threedlist]]]; Close[resultfile]; This gives a file with the content threedlist = {1, {2, {3, 4}}}; that is written in the Mathematica language and can be read directly by the command << "c:/restest.txt" By using this method, by writing the output as easily readable Mathematica files, you get easily "self-documented" files, that do not need information about the meaning of the content stored somewhere else. (Such information is called "Exformation" in the notation of the danish philosopher Tor Nørretranders.) You can easily modify your Mathematica file to include more data or comments. You can also easily interpret, read and change the file by a text editor, or reuse the data in other ways. If you just store the data without some labelling or comments, you cannot as easy attach more information, or as easy change the output format, without reformatting all data files you already have written. I have found this method with self-documented data files very useful in storing experimental "raw data", and also used other languages (e.g. Basic) to write such files. Then I can experiment freely with different ways of evaluation of my raw data, without destroying the raw data as such. Ingolf Dahl Chalmers University Sweden -----Original Message----- From: Shawn O'Connor [mailto:soconnor at ccs.nrl.navy.mil] To: mathgroup at smc.vnet.net Subject: [mg34949] [mg34879] 3d table or list to file Is it possible to save 3D lists to file to recall them later. Export/Import does not seem to work for lists with dimensions greater than 2 Thank you.