Re: Export data in Mathematica 6 in TSV format
- To: mathgroup at smc.vnet.net
- Subject: [mg77487] Re: Export data in Mathematica 6 in TSV format
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sun, 10 Jun 2007 07:20:08 -0400 (EDT)
- References: <f4b8ti$3v1$1@smc.vnet.net>
Hi, write your data to a Mathematica string with ExportString[] and than write the String to the stream. Regards Jens XedeX wrote: > Using Mathematica 5.2 following commands to export and append data to a file work fine > Openstrm = OpenAppend[FilePath]; > Export[Openstrm, DataToExport, "TSV" ]; > Close[Openstrm]; > > Now in Mathematica 6 you can't use a stream anymore. You have to specify the path location. As a result the Export command overwrite the file instead of appending the data to the file. > > Can someone help me to append data to a file in the TSV format? > > Thx, > XedeX >