Export data in Mathematica 6 in TSV format
- To: mathgroup at smc.vnet.net
- Subject: [mg77435] Export data in Mathematica 6 in TSV format
- From: XedeX <xedex at hotmail.com>
- Date: Fri, 8 Jun 2007 05:39:59 -0400 (EDT)
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