function mean = cardioid_mean ( a, b ) %*****************************************************************************80 % %% CARDIOID_MEAN returns the mean of the Cardioid PDF. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 31 July 2005 % % Author: % % John Burkardt % % Parameters: % % Input, real A, B, the parameters of the PDF. % 0.0 <= B <= 0.5. % % Output, real MEAN, the mean of the PDF. % mean = a; return end