|
|
Re: Export Data from Mathematica to Excel
Posted:
Feb 28, 2008 3:13 AM
|
|
On 2/27/08 at 4:26 AM, temelt@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
|
|