Re: how to save each raw of data to separate file?
- To: mathgroup at smc.vnet.net
- Subject: [mg80356] Re: how to save each raw of data to separate file?
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sat, 18 Aug 2007 05:41:04 -0400 (EDT)
- Organization: Uni Leipzig
- References: <fa3dp9$v9$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
Export["m"<>ToString[RandomInteger,{1,100000}]<>".txt",#,"Table"] & /@ b
will generate 3 random nemad file mxxxx.txt ...
and what mean b[[i]]>>i is it BitShiftRight[] ??
Regards
Jens
Arkadiusz.Majka 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
>
>