MathGroup Archive 2004

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

Search the Archive

RE: Simple list operation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg45648] RE: [mg45579] Simple list operation
  • From: "Ingolf Dahl" <ingolf.dahl at telia.com>
  • Date: Fri, 16 Jan 2004 19:58:09 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

Transpose[{x, y}]

Regards
Ingolf Dahl
Sweden

>-----Original Message-----
>From: Dr. Wolfgang Hintze [mailto:weh at snafu.de]
To: mathgroup at smc.vnet.net
>Sent: Friday, January 16, 2004 12:05
>To: mathgroup at smc.vnet.net
>Subject: [mg45648] [mg45579] Simple list operation
>
>
>Given two lists
>
>In[10]:=
>x = {a, b, c};
>
>In[11]:=
>y = {A, B, C};
>
>how can I get the list of pairs
>
>p={{a,A},{b,B},{c,C}}?
>
>I have used a brute force method like
>
>In[9]:=
>p = Table[ {x[[i]], y[[i]]}, {i, 1, 3}]
>
>Out[9]=
>{{a, A}, {b, B}, {c, C}}
>
>but I'm sure there is a much more elegant way.
>Any hint is greatly appreciated.
>
>Wolfgang
>


  • Prev by Date: Re: How do I Plot a B-Spline Surface and model a vase
  • Next by Date: RE: List operation
  • Previous by thread: Re: Simple list operation
  • Next by thread: Re: Simple list operation