MathGroup Archive 2011

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

Search the Archive

Mapping to Create Nested Loops

  • To: mathgroup at smc.vnet.net
  • Subject: [mg119374] Mapping to Create Nested Loops
  • From: Gregory Lypny <gregory.lypny at videotron.ca>
  • Date: Wed, 1 Jun 2011 04:32:42 -0400 (EDT)

Hello everyone,

I'm trying to learn how to use pure functions and mapping to create what amounts to nested loops. 

Suppose I have a 50 x 6 array called myArray.  The third element of each row is the word red, blue, or green.  If I wanted to break down the array into three according to the value of the third element, I could do this:

Cases[myArray, {__, __, #, __, __, __}] & /@ {red, blue, green}

But what if I needed to do this for more than one array?  Suppose I had three 50 x 6 arrays as

myListOfArrays = {myArray1, myArray2, myArray3} or perhaps the arrays might be imported from files. 


Regards,

Gregory


  • Prev by Date: Re: Parallelize vs Compile
  • Next by Date: Dt@x@1
  • Previous by thread: Re: Parallelize vs Compile
  • Next by thread: Re: Mapping to Create Nested Loops