MathGroup Archive 2006

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

Search the Archive

Any simple way to flatten all but the bottom level?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72323] Any simple way to flatten all but the bottom level?
  • From: dontdont at gmail.com
  • Date: Tue, 26 Dec 2006 05:50:35 -0500 (EST)

Am I overlooking something I should be able to see?

When I Nest Table I sometimes produce things like this

{{0, 0, 0}, {{0, 0, 13}, {0, 1, 9}, {0, 2, 5}, {0, 3, 1}}, {{1, 0, 4},
{1, 1, 0}}}

where each triple is actually one solution I'm looking for.
But I don't see a simple way to transform this result into

{{0, 0, 0}, {0, 0, 13}, {0, 1, 9}, {0, 2, 5}, {0, 3, 1}, {1, 0, 4}, {1,
1, 0}}

I would have guessed there would be a way to coax Flatten to do this.

Thus far I haven't found what looks like a good method.
I have found a few awkward and bad ways but no simple clean way.

Would anyone enlighten me?

thanks


  • Prev by Date: Re: ReplaceAll applied to List
  • Next by Date: Re: a bug in recursive formula in 64 bit machine
  • Previous by thread: Re: Any simple way to flatten all but the bottom level?
  • Next by thread: Re: Any simple way to flatten all but the bottom level?