【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.1.16.6.5.5 incgamma
Contents
Description
computes the incomplete gamma function.
Syntax
double incgamma( double x, double a )
Parameters
- x
- [input] standard argument of incomplete gamma function
- a
- [input] standard argument of incomplete gamma function
Return
incomplete gamma function of x, a
Examples
EX1
void incgamma_ex1() { double a = 2, x = .5; double val = incgamma(x, a); printf("incgamma(%f, %f) = %f\n", x, a, val); }
Remark
See Also
Header to Include
origin.h