Re: Writing result of "Do" in a single List
- To: mathgroup at smc.vnet.net
- Subject: [mg55317] Re: Writing result of "Do" in a single List
- From: Peter Pein <petsie at arcor.de>
- Date: Sat, 19 Mar 2005 04:45:19 -0500 (EST)
- References: <d1ed1u$f0e$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Laurent Feuz wrote: > Hi > 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? > > Thanks for any hints! > best > Laurent > Hi Laurent, Hmmm... didn't try it but I would expect Null as result. (expr/.i->#&)/@Range[imin,imax,di] or Reap[Do[Sow[expr], {i, imin, imax, di}]][[-1, 1]] should do what you want -- Peter Pein Berlin