function variance = poisson_variance ( a ) %*****************************************************************************80 % %% POISSON_VARIANCE returns the variance 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 VARIANCE, the variance of the PDF. % variance = a; return end