/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/Statistics/src/IncompleteGammaComplement.h
16 строк
431 B
Cms Build
Clang-Format
03 июн 2019, 06:44
03 июн 2019, 06:44
6a63925
Код
Авторство
О чём код?
#ifndef IncompleteGammaComplement_H #define IncompleteGammaComplement_H /** \class IncompleteGammaComplement * Computes the complement Q(a,x)=1-P(a,x) of the incomplete gamma function. * Computes its natural logarithm, useful for comparing very small values. * source: Numerical Recipes */ class IncompleteGammaComplement { public: static float value(float a, float x); static float ln(float a, float x); }; #endif