NDBT_Stats.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef NDBT_STATS_HPP
  14. #define NDBT_STATS_HPP
  15. #include <ndb_global.h>
  16. class NDBT_Stats {
  17. public:
  18.   NDBT_Stats() { reset(); }
  19.   
  20.   void reset() { sum = sum2 = 0.0; max = DBL_MIN; ; min = DBL_MAX; n = 0;}
  21.   
  22.   void addObservation(double t) { 
  23.     sum+= t; 
  24.     sum2 += (t*t); 
  25.     n++; 
  26.     if(min > t) min = t;
  27.     if(max < t) max = t;
  28.   }
  29.   
  30.   double getMean() const { return sum/n;}
  31.   double getStddev() const { return sqrt(getVariance()); }
  32.   double getVariance() const { return (n*sum2 - (sum*sum))/(n*n);}
  33.   double getMin() const { return min;}
  34.   double getMax() const { return max;}
  35.   int    getCount() const { return n;}
  36.   NDBT_Stats & operator+=(const NDBT_Stats & c){
  37.     sum += c.sum;
  38.     sum2 += c.sum2;
  39.     n += c.n;
  40.     if(min > c.min) min = c.min;
  41.     if(max < c.max) max = c.max;
  42.     return * this;
  43.   }
  44. private:
  45.   double sum;
  46.   double sum2;
  47.   int n;
  48.   double min, max;
  49. };
  50. inline
  51. double
  52. NDB_SQRT(double x){
  53.   assert(x >= 0);
  54.   double y = 0;
  55.   double s = 1;
  56.   double r = 0;
  57.   while(y <= x){
  58.     y += s;
  59.     s += 2;
  60.     r += 1;
  61.   }
  62.   return r - 1;
  63. }
  64. #endif