Re: Noob evaluation question
- To: mathgroup at smc.vnet.net
- Subject: [mg74174] Re: [mg74144] Noob evaluation question
- From: "Chris Chiasson" <chris at chiasson.name>
- Date: Tue, 13 Mar 2007 04:02:17 -0500 (EST)
- References: <200703130308.WAA11213@smc.vnet.net>
Using Robby Villegas' trap method: helpABuddy = True; Unprotect@Position; g_Position /; helpABuddy := Block[{helpABuddy = False, buddy`random = Random[Integer, {1, 9}]}, g] In[4]:= Position[{1,2,3,4,5,6,7,8,9},_?(#\[LessEqual]buddy`random&)] Position[{1,2,3,4,5,6,7,8,9},_?(#\[LessEqual]buddy`random&)] Position[{1,2,3,4,5,6,7,8,9},_?(#\[LessEqual]buddy`random&)] Out[4]= {{1},{2},{3},{4},{5},{6},{7},{8},{9}} Out[5]= {{1},{2}} Out[6]= {{1},{2},{3},{4},{5}} On 3/12/07, heycarnut <heycarnut at gmail.com> wrote: > Hi - > > Helping a buddy out with a small application, and I'm drawing a blank > on the following. > > Given : > > Position[{1, 2, 3, 4, 5, 6, 7, 8, 9}, _?(# <= Random[Integer, {1, > 9}] &)] > > How can we make the generated random number 'fixed' for the evaluation > of Position, instead of a new number getting generated at each element > of the list (the above is a simplified and contrived example.) > > Thanks > Rob > > > -- http://chris.chiasson.name/
- References:
- Noob evaluation question
- From: "heycarnut" <heycarnut@gmail.com>
- Noob evaluation question