MathGroup Archive 2007

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

Search the Archive

Re: making a list using table but with different increment after

  • To: mathgroup at smc.vnet.net
  • Subject: [mg81479] Re: making a list using table but with different increment after
  • From: mekane <mekane8 at att.net>
  • Date: Wed, 26 Sep 2007 06:26:21 -0400 (EDT)
  • References: <fd7sae$cgl$1@smc.vnet.net>

> 
> {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30, 40, 50, 60, 70, 80, 90,
> 100}
> 
> How do I accomplish this?
> 
> 

I'm sure someone smarter than me will post something better, but I would 
  do this:

Join[Table[a, {a, 0, 10}], Table[a, {a, 20, 100, 10}]]

-marty


  • Prev by Date: animated GIF
  • Next by Date: Re: making a list using table but with different increment after a certain number
  • Previous by thread: Re: animated GIF
  • Next by thread: Re: making a list using table but with different increment after