Question about RandomInteger
- To: mathgroup at smc.vnet.net
- Subject: [mg83153] Question about RandomInteger
- From: John <jwa0 at lehigh.edu>
- Date: Tue, 13 Nov 2007 03:38:28 -0500 (EST)
Needs["MultivariateStatistics`"]
n=1000
pdpd={1/6,1/6,1/6,1/6,1/6,1/6}
pdid={1/7,1/5,1/6,1/6.1/6,33/210}
u=RandomInteger[MultinomialDistribution[n,pdpd],1]
v=RandomInteger[MultinomialDistribution[n,pdid],1]
All of the above works.
But u and v appear more than once in subsequent calculations, and
RandomInteger reexecutes at each appearance. The reexecutions change
the values of u and v, and that is not what I want to happen.
Any advice will be appreciated.
John
- Follow-Ups:
- Re: Question about RandomInteger
- From: Darren Glosemeyer <darreng@wolfram.com>
- Re: Question about RandomInteger
- From: "Thomas Dowling" <thomasgdowling@gmail.com>
- Re: Question about RandomInteger