|
[Date Index]
[Thread Index]
[Author Index]
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
>
Prev by Date:
Re: Iterate Through a List
Next by Date:
licensing issues with V6.0 Financial Data
Previous by thread:
Re: Export data in Mathematica 6 in TSV format
Next by thread:
3D interpolation
|