Re: troubles with lists
- To: mathgroup at smc.vnet.net
- Subject: [mg35665] Re: troubles with lists
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Thu, 25 Jul 2002 04:45:53 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <ahlhbc$s6c$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
Join[] ?
Join[{{equation1, equation2}}, List[{x1, x10}, {x2, x20}]]
Regards
Jens
Gutlederer Erwin wrote:
>
> Hello,
>
> I need to create the following list:
>
> {{equation1, equation2,...equation_n},{x1,x1_0},{x2,x2_0},...{xn,xn_0}}
>
> In[48]:= Append[{{equation1, equation2}}, List[{x1, x1_0}, {x2, x2_0}]]
> Out[48]= {{equation1, equation2}, {{x1, 0}, {x2, 0}}}
>
> doesn't give the desired result which is
>
> Out[]= {{equation1, equation2}, {x1, x1_0}, {x2, x2_0}}
> without the brackets.
>
> Has somebody an elegant solution for this problem?
> Thanks for any help in advance.
> !e.