Re: Ot
- To: mathgroup at smc.vnet.net
- Subject: [mg40955] Re: Ot
- From: Mark Westwood <MarkCWestwood at compuserve.com>
- Date: Fri, 25 Apr 2003 08:06:14 -0400 (EDT)
- Organization: CompuServe Interactive Services
- References: <b88agc$gu9$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Gartek
You could try
list3 = Transpose[{list1, list2}]
or
list3 = Inner[List, list1, list2, List]
Both seem to do what you want - the help browser can tell you more about
each of them.
Regards
Mark Westwood
Gartek wrote:
>
> I have been looking for two hours in help and I did'n find any solution?
> I understend that it is a simple and easy but....
> I have to list; list1 and list2
> list1={ala, ula, ola}
> list2={osa, bak, mak}
> and I want a list3={{ala, osa},{ula, bak}, {ola, mak}};
> How to do it?
> Thanks in advance!
> Gartek