MathGroup Archive 1997

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

Search the Archive

Re: Try again, how to interleave two lists?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg9491] Re: Try again, how to interleave two lists?
  • From: Hein Hundal <hundalhm at vicon.net>
  • Date: Sat, 8 Nov 1997 23:04:24 -0500
  • Sender: owner-wri-mathgroup at wolfram.com

Rob,
   Flatten & Transpose should do the trick.

alist =Table[ToExpression/@ (("A"<> ToString[i] <>#)& /@ {"x","y","z"}),
	{i,1,10}]
blist =Table[ToExpression/@ (("B"<> ToString[i] <>#)& /@ {"x","y","z"}),
	{i,1,10}]
Flatten[ Transpose[{alist, blist}],1]


Hein


  • Prev by Date: High School Grant Program News Release
  • Next by Date: Re: Error in integrals?
  • Previous by thread: Re: Try again, how to interleave two lists?
  • Next by thread: Re: Try again, how to interleave two lists?