Re: Command similar to flatten??
- To: mathgroup at smc.vnet.net
- Subject: [mg89281] Re: [mg89273] Command similar to flatten??
- From: "W_Craig Carter" <ccarter at mit.edu>
- Date: Tue, 3 Jun 2008 06:45:31 -0400 (EDT)
- References: <200806030759.DAA19034@smc.vnet.net>
Hello Erin,
You want to Flatten at level 1:
garb = RandomInteger[{0, 1}, {4, 10, 1100, 5}];
Dimensions[garb]
trash = Flatten[garb, 1];
Dimensions[trash]
On Tue, Jun 3, 2008 at 3:59 AM, Erin Noel <enoel2 at gmail.com> wrote:
> Hi all,
>
> I am pretty new to Mathematica coding so bear with me...
>
> I have a list of lists named "A" whose dimensions are {4,10,1100,5} and I
> want to basically "combine" those first two levels so that the dimensions
> become {40,1100,5} but I have no idea how to do that...Any suggestions?
> Thanks a lot in advance.
>
> Erin
>
>
--
W. Craig Carter
- References:
- Command similar to flatten??
- From: "Erin Noel" <enoel2@gmail.com>
- Command similar to flatten??