Re: how to save each raw of data to separate file?
- To: mathgroup at smc.vnet.net
- Subject: [mg80354] Re: how to save each raw of data to separate file?
- From: pbuttgereit at proderm.de
- Date: Sat, 18 Aug 2007 05:40:02 -0400 (EDT)
- References: <fa3dp9$v9$1@smc.vnet.net>
Hi Arek, the problem is with ">>" -- this operator converts the right hand side to a string, so Table will not replace it with a value. So what happens is that b[[1]] is written to the file "i", than b[[2]] overwriting it and finally b[[3]] overwriting it. What You can do is this: Table[ Put[ b[[i]], ToString[i] ], { i, 1, Length[b] } ] Regards, Peter On 17 Aug., 08:04, Arkadiusz.Ma... at gmail.com wrote: > Hi, > > Say I have a list of sublists > b= {{a1,a2,a3},{b1,b2},{c1,c2,c3,c4}} > > How can I automatically save b[[1]], b[[2]] and b[[3]] to three > separate files? > > How should I correct the below expression to let it work? > > Table[b[[i]]>>i, {i,1,Length[b]}] > > Thanks, > > Arek