home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c017 / 7.ddi / GPPLIB.ZIP / LOGNORML.CC < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-17  |  210 b   |  13 lines

  1. #include "LogNormal.h"
  2. #include <math.h>
  3.  
  4. //
  5. //    See Simulation, Modelling & Analysis by Law & Kelton, pp260
  6. //
  7. // 
  8.  
  9. double LogNormal::operator()()
  10. {
  11.     return( pow(M_E, Normal::operator()() ) );
  12. }
  13.