📄 math_util.h
字号:
/* $Id: math_util.h,v 1.3 2006-08-09 15:20:54 jonathan Exp $ * Jonathan Ledlie, Harvard University. * Copyright 2005. All rights reserved. */#ifndef MATH_UTIL_H#define MATH_UTIL_H//#include <sunmath.h>#include <vector>#include <algorithm>#include <math.h>#include <iostream>using namespace::std;#define Long long long#define Rand() drand48()#define SRand(c) srand48(c)#define ABS(x) ((x > 0) ? x : -1*x)double randPct ();int poisson (int mean);double poisson (double mean);int unifRand (int a, int b);vector<int> unifRands (int count, int a, int b);double mean (vector<double> v);double stddev (vector<double> v, double mean);double percentile (vector<double> v, double percentile);double square (double x);double log16 (double x);double log8 (double x);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -