Juan,
In addition to the small experiment, I did some simulations in R. To simulate the stacking of 40 images, I created random pixel stacks with 40 pixels each, with Poisson noise+5% uniformly distributed impulse noise (simulating airplanes etc.), and did this for different mean values (lambda parameter of the poisson distribution). I did it 100 times for each mean value, and computed slope as described in your documentation. The first attached plot shows the slope values found (as a box plot
http://en.wikipedia.org/wiki/Box_plot), with the mean on the x-axis, and slope on y. The second plot shows the same, only here slope is divided by sqrt(mean).
I will make the simulation source code available later today.
Georg
PS: the attached graphs were created with
boxplot(slope/mean~mean,data=r.lin)
boxplot(slope/sqrt(mean)~mean,data=r.lin)