Re: Output Table Format Change
- To: mathgroup at smc.vnet.net
- Subject: [mg66708] Re: Output Table Format Change
- From: Peter Pein <petsie at dordos.net>
- Date: Sat, 27 May 2006 03:53:04 -0400 (EDT)
- References: <e56dqn$1rv$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Narasimham schrieb:
> Is there a command for removal of brackets automatically from
> output ?
>
> tbl = Table[ N[ {Sin[u+v],Cos[u-v]}],{u,0, Pi,Pi/6},{v,0, Pi,Pi/6}] ;
>
> ListPlot[tb,PlotJoined->True,AspectRatio->Automatic];
>
> tb is same as tbl from which extra curly brackets { } are manually
> removed. (tbl output is deleted here).
>
> Thanks in advance.
>
There are at least three simple methods to yield the desired result:
Flatten[tbl,1]===Join@@tbl===Sequence@@@tbl
--> True
The first one should be the fastest for huge list constructs.