ulib  1.0
S.W. Lee's essential C++ library
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
umath.h
Go to the documentation of this file.
1 #ifndef ___umath___
2 #define ___umath___
3 
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include <math.h>
7 
8 // ㅁ
9 
10 namespace ulib {
11 
12  class CUMath
13  {
14  public:
15  CUMath();
16  ~CUMath();
17 
18  static double NormalDist( double x, double mean, double std_dev );
19  } ;
20 
21 }
22 
23 #endif
24 
25