1

I'm inspired to make use of "remembering the function values" technique from here: Functions that remember their values

The only question is: how can I save the function, along with its values stored as well, into some kind of file, so that next time when I load the file, i.e., the function into Mathematica, I can access all the values I stored last time.

James LT
  • 303
  • 2
  • 11

1 Answers1

0

DynamicModule[{x,y, ...]},expr] represents an object which maintains the same local instance of the symbols x, y, ...] in the course of all evaluations of Dynamic objects in expr. Symbols specified in a DynamicModule will by default have their values maintained even across Wolfram System sessions.

CElliott
  • 560
  • 2
  • 7