 
 
 
 
 
 
Re: Writing result of "Do" in a single List
- To: mathgroup at smc.vnet.net
- Subject: [mg55351] Re: Writing result of "Do" in a single List
- From: Bill Rowe <readnewsciv at earthlink.net>
- Date: Sat, 19 Mar 2005 04:47:19 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
On 3/18/05 at 5:35 AM, laurent.feuz at mat.ethz.ch (Laurent Feuz)
wrote:
>When I am calculating values with the Do[expr, {i, imin, imax,
>di}] expression, I get single values as a result that are a pain to
>export.
>How can I write these values in a list that then can easily be
>exported?
Don't use Do, use Table as in
Table[expr, {i, imin, imax, di}]
The result is a list of you can easily export.
--
To reply via email subtract one hundred and four

