MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: complicated list selector

  • To: mathgroup at smc.vnet.net
  • Subject: [mg98474] Re: complicated list selector
  • From: Francesco <b.gatessucks at gmail.com>
  • Date: Fri, 10 Apr 2009 04:56:58 -0400 (EDT)
  • References: <grkgld$6a6$1@smc.vnet.net>

{#[[1]], #[[2, 2]]} & /@ data

-Francesco

summer wrote:
> I have the following list
> 
> data = {  {11, {121, 122}},   {21, {221, 222}},  {31, {321, 322}} };
> 
>>From each sublist, I want to extract the first element and the second element of the second sub-sub-list that is:
> 
> wanted_result={  {11, 122},   {21, 222},   {31, 322}   }
> 
> I tried 
> 
> data[[All, {1, {2,1}}]] 
> 
> but it gives me error.
> 
> What is the right selector ?
> 


  • Prev by Date: Re: Plotting 3d-mesh files / Isosurfaces
  • Next by Date: Re: dynamic popupmenu help needed
  • Previous by thread: Re: complicated list selector
  • Next by thread: Re: complicated list selector