ALEA::VERHULST
Arguments: seed lambda long [generic-function]
Generates a sequence of length long based on the logistical equation of Pierre-François Verhulst : yn = xn-1 + xn-1 * lambda * (1 - xn-1)
This equation describes population growth. - lambda is a number or a list of parameters which define the 'turbulence' of the generated values; - seed is an initial value between zero and one (this value represents the initial population as a ratio to the maxi-mum population); - long is the length of the list generated, which is equivalent to the number of iterations. The output of this module is a [[list]] of values for each iteration.