MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

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


  • Prev by Date: Re: bug in series expansion routines.
  • Next by Date: Re: Import Problem
  • Previous by thread: Re: Writing result of "Do" in a single List
  • Next by thread: Re: Writing result of "Do" in a single List