Re: Writing result of "Do" in a single List
- To: mathgroup at smc.vnet.net
- Subject: [mg55512] Re: Writing result of "Do" in a single List
- From: "Robert G. Wilson v" <rgwv at rgwv.com>
- Date: Sun, 27 Mar 2005 02:42:45 -0500 (EST)
- References: <d1ed1u$f0e$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Dear Sir, A solution that I use is: lst = {}; Do[ AppendTo[ lst, expr], {i, to limit}]; lst Sincerely yours, Bob. 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 >
- Follow-Ups:
- Re: Re: Writing result of "Do" in a single List
- From: DrBob <drbob@bigfoot.com>
- Re: Re: Writing result of "Do" in a single List