Re: Re: Re: export data to spreadsheet
- To: mathgroup at smc.vnet.net
- Subject: [mg79303] Re: [mg79288] Re: Re: export data to spreadsheet
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Tue, 24 Jul 2007 06:02:03 -0400 (EDT)
- Reply-to: hanlonr at cox.net
data = Join[{{"x", "Sin[x]", "Cos[x]", "Tan[x]"}}, Table[{x, Sin[x], Cos[x], Tan[x]}, {x, 0, 2 Pi, Pi/16}] // N]; Export["test.xls", data, "XLS"]; Bob Hanlon ---- Steven Shippee <droukas at comcast.net> wrote: > How much more involved would it be to get column headings for this output or > export? > > Thanks in advance, > > Steven Shippee > slshippee at comcast.net > > > "Bob Hanlon" <hanlonr at cox.net> wrote in message > news:f7v54b$t9b$1 at smc.vnet.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. > >> > >> > > > > > > >