Re: Open Write?
- To: mathgroup at smc.vnet.net
- Subject: [mg30927] Re: [mg30911] Open Write?
- From: Mianlai Zhou <lailai at nikhef.nl>
- Date: Thu, 27 Sep 2001 02:16:44 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Do[x^2>>>Values.txt, {x, 0, 1, .1}] will work. Good luck. Mianlai Zhou Theory Group, NIKHEF Amsterdam, The Netherlands On Mon, 24 Sep 2001 Moranresearch at aol.com wrote: > > Here is a simple loop that generates values. > Do[Print[x^2], {x, 0, 1, .1}] > How can I write these values to a file eg. Values.txt? The Print command is > not necessary. > Thank you. > >