00001 // marUtils.h: interface for the marUtils class. 00002 // 00004 00005 #ifndef __MAR__KERNEL__UTILS__HXX__ 00006 #define __MAR__KERNEL__UTILS__HXX__ 00007 00008 #include <vector> 00009 #include <math.h> 00010 class marUtils 00011 { 00012 public: 00013 marUtils(); 00014 ~marUtils(); 00015 00016 double obtainAverage(std::vector<double> list); 00017 double obtainStandardDeviation(std::vector<double> list, double average); 00018 00019 }; 00020 00021 #endif