Re: joining lists.
- To: mathgroup at smc.vnet.net
- Subject: [mg23769] Re: joining lists.
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sat, 10 Jun 2000 02:59:15 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <8hff2o$ht9@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
{list1,list2}
???
or
List[list1,list2]
????
Regards
Jens
Otto Linsuain wrote:
>
> hi all, this should be simple.
>
> I got:
>
> list1={ some numbers }
>
> list2={ some other numbers }
>
> Append[list1,list2] gives me { some numbers, { some other numbers } }
>
> Join[list1,list2] gives me { some numbers, some other numbers }
>
> I want { { some numbers }, { some other numbers } }
>
> Actually I have found that:
>
> Join[{list1},{list2}] does what I want but I don't find it very elegant.
>
> I can live with the lack of elegance, but I wonder if there is some
> other function or construction (for joining lists) that I am not aware
> of.
>
> Thanks in advance. Otto Linsuain.