[wxm] wishlist



You can arrange to 'walk' through or delay evaluations by inserting 
'read' statements in your .mac file.

I have not played much with this, but here are the contents of a simple barebones type
of .mac file.


xx:read("For next step, enter 'N;'");
plot(sin(x),[x,0,6.3]);
xx:read("For next step, enter 'N;'");
plot(cos(x),[x,0,6.3]);

Just save this as the file
   read_test.mac

and, in maxima, type
  load("read_test.mac");

I use xmaxima and have not tried this with wxmaxima, but it should
work.

Also,
  Just for delayed execution, you probably don't need the 'xx'
  assignment.  However, using it you can give conditional statements
  such as

xx: read("Enter '1;' to plot the cosine, '2;' to plot the sine");
if xx=1 then plot2d(sin(x),[x,0,6.3]) else if xx=2 then plot2d(sin(x),[x,0,6.3]);

Save this as
   read_2.mac
and play.


HTH,
  -sen


  ---------------------------------------------------------------------------
  | Sheldon E. Newhouse            |    e-mail: sen1 at math.msu.edu           |
  | Mathematics Department         |       				   |
  | Michigan State University      | telephone: 517-355-9684                |
  | E. Lansing, MI 48824-1027 USA  |       FAX: 517-432-1562                |
  ---------------------------------------------------------------------------

On Mon, 16 Apr 2007, Wolfgang Lindner wrote:

> dear group,
>
> (wx)Maxima is a wunderful product.
> So please let me formulate 2 wishes for future releases of wxMaxima.
>
> W1: there should be a button 'delete all output'
> W2: there should be the possibility 'to delay evaluation',
>    e.g. loading a file 'without auto evaluation of input lines'.
>    So one could walk stepwise along the inputs from the beginning or elsewhere.
>
> Thank you,
> Wolfgang
> Leichlingen, Germany
>
> _______________________________________________
> Maxima mailing list
> Maxima at math.utexas.edu
> http://www.math.utexas.edu/mailman/listinfo/maxima
>