Questions tagged [dumpsave]
The dumpsave tag has no summary.
25 questions
2 votes
2 answers
116 views
How to save values for numbered/indexed variables using DumpSave
I want to programmatically create a set of variables (each corresponds to an index n, for example: {a1,b1} or ...
0 votes
0 answers
62 views
How to edit the DumpSave data file later?
My understanding is, if you store something through DumpSave in a file, and then, on a later session, try to use the same file to save some more data, the older data will get erased. Is this true? Is ...
1 vote
0 answers
80 views
Saving data from a Manipulate's current state using a FormObject control
I would like to save a large set of data that has been computed within a Manipulate. Here is a minimal example: ...
3 votes
3 answers
214 views
How can I Save function defintion without its DownValues?
I use functions that memorize their values like this one: ...
3 votes
1 answer
226 views
Function to Save/DumpSave without specifying full path
I am trying to create a function that saves a set of symbols into "test.mx" and is easy to use. ...
5 votes
0 answers
218 views
Best practices to save "large" data from numerical computations
After solving PDEs with NDSolve and saving data with DumpSave, sometimes, Mathematica pops up a window saying "Abort or ...
5 votes
1 answer
270 views
Export is not clearing memory
Version: all 12.x OS: Windows 10 and MacOS I am having an issue with Export not clearing memory after it is done with exporting to an .mx file. I have reviewed other posts concering memory issues with ...
1 vote
0 answers
40 views
Creating a library of saved function values [duplicate]
I have a command of the form J[b,c,n] which outputs a list of complex numbers, obtained by using FindRoot. Some outputs take ...
1 vote
0 answers
96 views
How to use export and schedule tasks to backup entire contents of an notebook at regular time intervals?
I am sorry I don't have any code to share so I would like your ideas. Although there is an AutoSave feature in Mathematica it lacks usefulness as it cannot be ...
0 votes
0 answers
125 views
How to DumpSave previously assigned symbols
I'm trying to DumpSave[] some variables based on their name string. To define them, I'm using ...
0 votes
0 answers
32 views
Load binary .mx files from list of paths? [duplicate]
I have several .mx files containing data saved to disk via DumpSave. I load a list of these files in my folder as ...
0 votes
1 answer
198 views
Exporting/saving a table of Interpolated functions
I have a lot of interpolated functions that I have generated from a numerical integral. It takes me 2 hours or so to generate them so I would prefer to save and import them. I have tried ...
1 vote
1 answer
125 views
Problem with Get at M11.0 that was produced with DumpSave M12.1 [closed]
I have two computers, one has Mathematica 11.0, one has Mathematica 12.1. I have created a .mx file using DumpSave at M12.1. I can read the .mx file using ...
1 vote
1 answer
409 views
How to load expressions into a notebook with a different context
So because I wanted my multiple notebooks to not interfere with each other, I start them with: SetOptions[EvaluationNotebook[], CellContext -> Notebook] ...
3 votes
0 answers
245 views
How to recover plaintext from .MX files?
I need a function to deserialize the contents of an MX source file for reading. We can’t simply use Get because I don’t want to load or run the code, but rather to ...