MathGroup Archive 2006

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

Search the Archive

Re: List Manipulation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg63484] Re: [mg63478] List Manipulation
  • From: ggroup at sarj.ca
  • Date: Tue, 3 Jan 2006 01:24:36 -0500 (EST)
  • References: <200601021049.FAA01354@smc.vnet.net>
  • Reply-to: ggroup at sarj.ca
  • Sender: owner-wri-mathgroup at wolfram.com

On Monday, January 2, 2006 at 05:49 GMT -0500, Lectorz wrote:

> I have 2 lists

> list1 = {{a,b,c,d},{e,f,g,h}}
> list2 = {{1},{2}}

> Which function(s) should I use to get

> list3 = {{a,b,c,d,1},{e,f,g,h,2}}

list3 = MapThread[Join,{list1,list2}]


  • Prev by Date: Re: List Manipulation
  • Next by Date: Re: List Manipulation
  • Previous by thread: List Manipulation
  • Next by thread: Re: List Manipulation