Not available in Maple 9 anymore: save all variables once

From: Humberto Jose Bortolossi (hjbortol_at_mat.puc-rio.br)
Date: 02/14/05


Date: 14 Feb 2005 08:40:02 -0800

Greetings!

In the old versions of Maple (5 and 6, for instance), the command

save "filename.m";

saves ALL data for future use. Now, in Maple 9, it's
necessary to specify which names you want to save. This
is annoying!

I've tried to build a "save all" command by myself
combining anames('user') and the save command. Indeed,
I was able to put the whole command in a symbol with the following
code:

unassign('namesToSave'):
unassign('saveCommand'):
anames('user'):
namesToSave := [%]:
saveCommand := [`save`, ` `]:
for i from 1 to nops(namesToSave) do
   saveCommand := [op(saveCommand), namesToSave[i], ","]:
od:
saveCommand := [op(saveCommand), `"`, libFileName, `"`]:
eval_me := cat(op(saveCommand));

The problem is: I donīt know to make Maple evaluate (interpret)
the contents of the "eval_me" variable. Is there a such way?
I mean, if I have a symbol or string with a maple command, is it
possible to make Maple interpret such string and execute
the command? Does Maple operate in a meta level?

Thanks in advance, Humberto.



Relevant Pages

  • Re: Not available in Maple 9 anymore: save all variables once
    ... I've tried to use the parse command to build a "save all" ... word save in the string. ... >> have a symbol or string with a maple command, ...
    (sci.math.symbolic)
  • Re: How to extract the polynomial from the maple s
    ... Thanks for the information about accessing the maple manuel. ... The maple command 'series' outputs a fomat that I'm having ... For individual coefficients the command ... I'm operating on a Linux Debian platform using Matlab ...
    (comp.soft-sys.matlab)
  • Re: MatLab Display
    ... the input and especially the output display of computations. ... command line only, and the 'pretty' command for output display, while ... Other programs, like Maple, not only display output ... The best material model of a cat is another, or preferably the same, cat. ...
    (comp.soft-sys.matlab)
  • Re: $include to read maple procedures from txt files
    ... The online help only provides little information about ... The preprocessor is not available in graphical interface ... versions of Maple, nor is it available when input is typed on the Maple ... It sounds like you're trying to use this from the Maple command line, ...
    (sci.math.symbolic)
  • Command line Maple vs GUI
    ... I assume Maple is using some numeric solver ... Within the maple GUI, ... Is there a computational advantage to running a script in command ...
    (sci.math.symbolic)