Open DumpSave in new context?
- To: mathgroup at smc.vnet.net
- Subject: [mg92254] Open DumpSave in new context?
- From: "karl.daggfeldt at gih.se" <karl.daggfeldt at gih.se>
- Date: Wed, 24 Sep 2008 03:32:53 -0400 (EDT)
Is there a way to specify a new context for a DumpSave:d file when I open it? The simple approach below is working when the file is saved with Save but not with DumpSave. (*DumpSave a to file*) a=1; DumpSave["temp.mx",a]; Remove[a]; (*not generating myContext`a but rather Global`a*) Begin["myContext`"]; Get["temp.mx"]; End[]; Greatefull for answers! Kalle