home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 41 / IOPROG_41.ISO / soft / c++ / NUMCPP11.ZIP / noncdist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-10  |  1.1 KB  |  41 lines

  1. //===================================================================
  2. // noncdist.h
  3. //
  4. // Version 1.1
  5. //
  6. // Written by:
  7. //   Brent Worden
  8. //   WordenWare
  9. //   email:  Brent@Worden.org
  10. //
  11. // Copyright (c) 1998-1999 WordenWare
  12. //
  13. // Created:  August 28, 1998
  14. // Revised:  April 10, 1999
  15. //===================================================================
  16.  
  17. #ifndef _NONCDIST_H_
  18. #define _NONCDIST_H_
  19.  
  20. #include "numerics.h"
  21.  
  22. NUM_BEGIN
  23.  
  24. NUMERICS_EXPORT double ncstudtp(double x, double df, double delta);
  25. //-------------------------------------------------------------------
  26. // Returns the value of Non-central Student's T random variable
  27. // distribution function with df degrees of freedom and
  28. // non-centrality parameter delta at the value x.
  29. //-------------------------------------------------------------------
  30.  
  31. NUM_END
  32.  
  33. #endif
  34.  
  35. //===================================================================
  36. // Revision History
  37. //
  38. // Version 1.0 - 08/28/1998 - New.
  39. // Version 1.1 - 04/10/1999 - Added Numerics namespace.
  40. //===================================================================
  41.