# Example
N=10000 # Initial population of size N
life = np.arange(N)
Half_life = 72 # 72 h (3d)
stop = 40 # 40*step_long (h)
step_long = 1
evol1, pol1 = py_discrete_decay(life, Half_life, step_long, stop)
# evol, a list containing the living individuals for each step in the decay.
# pol, an array with the number of individuals for each step in the decay.