reading integers from a stream



 

> -----Original Message-----
> From: maxima-bounces at math.utexas.edu 
> [mailto:maxima-bounces at math.utexas.edu] On Behalf Of Richard Fateman
> Sent: Thursday, September 20, 2007 7:02 AM
> To: 'Fabrizio Caruso'; maxima at math.utexas.edu
> Subject: Re: [Maxima] reading integers from a stream
> 
> You may be able to read integers separated by new lines or by 
> spaces by
> using lisp.
> Try foo:?open(filename);
>  ?read(foo); ?read(foo); ....
> Getting the filename in the right form, as a string, may be tricky.
> RJF
>  
> 
>
Try ...  foo:?open(?"c:\\temp\\numbers");

        ?read(foo)

Etc.

RJF