function mean = uniform_01_mean ( ) %*****************************************************************************80 % %% UNIFORM_01_MEAN returns the mean of the Uniform 01 PDF. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 22 September 2004 % % Author: % % John Burkardt % % Parameters: % % Output, real MEAN, the mean of the discrete uniform PDF. % mean = 0.5; return end