gamma.h

来自「it is tree Dtree algorithm. so see it. i」· C头文件 代码 · 共 26 行

H
26
字号
/*----------------------------------------------------------------------  File    : gamma.h  Contents: computation of the gamma function  Author  : Christian Borgelt  History : 04.07.2002 file created            02.08.2002 function gamma added            19.05.2003 incomplete gamma function added----------------------------------------------------------------------*/#ifndef __GAMMA__#define __GAMMA__#include <math.h>/*----------------------------------------------------------------------  Functions----------------------------------------------------------------------*/extern double logGa (double n);extern double gamma (double n);extern double incGa (double n, double x);/*----------------------------------------------------------------------  Preprocessor Definitions----------------------------------------------------------------------*/#define gamma(x)    exp(logGa(x))#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?