Re: Re: export data to spreadsheet
- To: mathgroup at smc.vnet.net
- Subject: [mg79267] Re: [mg79234] Re: export data to spreadsheet
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sun, 22 Jul 2007 04:28:39 -0400 (EDT)
- Reply-to: hanlonr at cox.net
data = Table[{x, Sin[x], Cos[x], Tan[x]}, {x, 0, 2 Pi, Pi/16}] // N;
Export["test.xls", data, "XLS"];
Bob Hanlon
---- Martin Channon <mgcqso at comcast.net> wrote:
> Greetings folks, this is my first time here. I don't use Mathematica
> very often, so I don't know the it very well, and I'm stumped on
> something that is probably pretty basic. Can anyone tell me how to
> export table data to a spreadsheet? Thanks.
>
>