On Thu, 27 Aug 2009, Lars PĂ„lsson-Syll wrote:
I wonder if it is poosible with gretl somehow to make a
simulation of throwing two dices (when using uniform I only get
CONTINUOUS values between 1 and 6).
nulldata 1000
series d1 = floor(1+6*uniform())
series d2 = floor(1+6*uniform())
series dd = d1 + d2
freq dd
summary dd
Allin Cottrell