Re: Export Data from Mathematica to Excel
- To: mathgroup at smc.vnet.net
- Subject: [mg85953] Re: Export Data from Mathematica to Excel
- From: Bill Rowe <readnewsciv at sbcglobal.net>
- Date: Thu, 28 Feb 2008 02:57:21 -0500 (EST)
On 2/27/08 at 4:26 AM, temelt at xs4all.nl (Tugrul Temel) wrote: >I have a Mathematica matrix format by (5*2) below >How can I export this matrix to an Excel file? Export["filename.xls", data, "XLS"] where data is a variable containing the matrix you want to export. This will export it to a native Excel file. An alternative would be, Export["filename.csv", data, "CVS"] This will export the matrix to a comma separated file. While this isn't a native Excel file, under Windows with the default installation, double clicking it will cause Excel to open it and load it automatically. -- To reply via email subtract one hundred and four