saving lists/plots in another notebook
- To: mathgroup at smc.vnet.net
- Subject: [mg66059] saving lists/plots in another notebook
- From: Zachary Zibrat <atomato at gmail.com>
- Date: Fri, 28 Apr 2006 06:32:41 -0400 (EDT)
- Organization: University of California, Berkeley
- Sender: owner-wri-mathgroup at wolfram.com
i keep getting stuck:
i want to save lists of points in a different notebook than the one i'm
creating them in. each list needs to have a unique label so i can refer
to it later on. it seems like the best way for me to write the lists of
points in the new notebook is to use a command like
NotebookWrite[notebook, Cell[BoxData[ToBoxes[{1, 2}]], "Output"]];
because then i can write each list to a new cell, which facilitates
things greatly (unlike Save or OpenAppend, which writes everything to
the same cell). however, what i need is an expression that is
equivalent to
list1={1,2}
written to a cell, so that the list has a unique label.
furthermore, i want to save plots that i generate in this new notebook,
and these need to have unique labels as well.
can someone help me out?
thanks