MathGroup Archive 2011

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

Search the Archive

Re: How can I concatenate elements

  • To: mathgroup at smc.vnet.net
  • Subject: [mg119922] Re: How can I concatenate elements
  • From: Orleo Marinaro <orleo.marinaro at gmail.com>
  • Date: Wed, 29 Jun 2011 05:30:56 -0400 (EDT)
  • References: <iu4a05$jpm$1@smc.vnet.net>

Use the built-in Join[].
So
Join[s1,s2]
and yield
{1, 2, 3, 4, 5, 6, c, k}


On Jun 25, 11:32 am, "Leandro Tenfen" <leandroten... at hotmail.com>
wrote:
> Hi,
>
> I have two lists:
>
> s1={1,2,3,4,5,6};
> s2={c,k};
>
> How can I concatenate elements of lists as follows:
>
> s3={1c,2c,3c,4c,5c,6c,1k,2k,3k,4k,5k,6k}
>
> Many Thanks!



  • Prev by Date: Bug in Sum?
  • Next by Date: Recognize my GCC installation.
  • Previous by thread: Re: How can I concatenate elements
  • Next by thread: Re: How can I concatenate elements