Re: How to create this kind of list
- To: mathgroup at smc.vnet.net
- Subject: [mg122131] Re: How to create this kind of list
- From: Murray Eisenberg <murray at math.umass.edu>
- Date: Sun, 16 Oct 2011 07:05:20 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201110151004.GAA03200@smc.vnet.net>
- Reply-to: murray at math.umass.edu
You'll probably get a large number of responses on this, since it's so easy:
a = Range[1, 6];
b = RandomInteger[{1, 100}, 6];
Transpose[{a, b}]
On 10/15/11 6:04 AM, Szymon Roziewski wrote:
> Hello there,
> I am thinking about creating such a list.
> I have 2 lists with the same number of elements.
> The idea is to create one list which was taken from these previous two ones
> in the following way:
> Take one element of the first list and one from another and put it into
> result list {{x1,y1},{x2,y2},...,{xn,yn}}.
> Input lists:
> A={x1,x2,...,xn}
> B={y1,y2,...,yn}
>
> All best,
> Szymon Roziewski
>
--
Murray Eisenberg murray at math.umass.edu
Mathematics & Statistics Dept.
Lederle Graduate Research Tower phone 413 549-1020 (H)
University of Massachusetts 413 545-2859 (W)
710 North Pleasant Street fax 413 545-1801
Amherst, MA 01003-9305
- References:
- How to create this kind of list
- From: Szymon Roziewski <szymon.roziewski@gmail.com>
- How to create this kind of list