OpenMining  0.01
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
percent.h
Go to the documentation of this file.
1 #ifndef percent_h
2 #define percent_h
3 
4 namespace utils
5 {
6  template<class T>
7  T percent(T numerator, T denominator)
8  {
9  if (denominator)
10  {
11  return ( (100 * numerator) / denominator);
12  }
13 
14  return 0;
15  }
16 }
17 
18 #endif
T percent(T numerator, T denominator)
Definition: percent.h:7