function mean = poisson_mean ( a ) %*****************************************************************************80 % %% POISSON_MEAN returns the mean of the Poisson PDF. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 19 September 2004 % % Author: % % John Burkardt % % Parameters: % % Input, real A, the parameter of the PDF. % 0.0 < A. % % Output, real MEAN, the mean of the PDF. % mean = a; return end