Re: tablename[[x]]= xth row, how to get xth column
- To: mathgroup at smc.vnet.net
- Subject: [mg88614] Re: tablename[[x]]= xth row, how to get xth column
- From: markus.roellig at googlemail.com
- Date: Fri, 9 May 2008 07:18:27 -0400 (EDT)
- References: <g00v0k$gl7$1@smc.vnet.net>
Hi cimon, try In[151]:= f[[All, 2]] Out[151]= {2, 4} Best, Markus On 9 Mai, 09:37, cimon <tamanna.ar... at gmail.com> wrote: > hello > > a very simple question, "sometablename[[X]]" gives me the Xth row of > table , like below. > > f = {{1, 2, 3, 4}, {1, 4, 6, 77}} > {{1, 2, 3, 4}, {1, 4, 6, 77}} > f[[1]] > {1, 2, 3, 4} > > I am not able to find the syntax that can give me Xth column of a > table. i dont want to transpose it and use. and I tried #, > > thank you > > cimon