I have a Mathematica matrix format by (5*2) below
Var1, 12
Var2, 3
Var3, 45
Var4, 78
Var5, 6
How can I export this matrix to an Excel file?
Thanks
Tugrul
>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