17.11.2012 Views

Numerical recipes

Numerical recipes

Numerical recipes

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

#include <br />

6.2 Incomplete Gamma Function 221<br />

float erfcc(float x)<br />

Returns the complementary error function erfc(x) with fractional error everywhere less than<br />

1.2 × 10 −7 .<br />

{<br />

float t,z,ans;<br />

}<br />

z=fabs(x);<br />

t=1.0/(1.0+0.5*z);<br />

ans=t*exp(-z*z-1.26551223+t*(1.00002368+t*(0.37409196+t*(0.09678418+<br />

t*(-0.18628806+t*(0.27886807+t*(-1.13520398+t*(1.48851587+<br />

t*(-0.82215223+t*0.17087277)))))))));<br />

return x >= 0.0 ? ans : 2.0-ans;<br />

There are also some functions of two variables that are special cases of the<br />

incomplete gamma function:<br />

Cumulative Poisson Probability Function<br />

Px(< k), for positive x and integer k ≥ 1, denotes the cumulative Poisson<br />

probability function. It is defined as the probability that the number of Poisson<br />

random events occurring will be between 0 and k − 1 inclusive, if the expected mean<br />

number is x. It has the limiting values<br />

Px(< 1) = e −x<br />

Its relation to the incomplete gamma function is simply<br />

Chi-Square Probability Function<br />

Px(< ∞) =1 (6.2.14)<br />

Px(< k)=Q(k, x) =gammq (k, x) (6.2.15)<br />

P (χ 2 |ν) is defined as the probability that the observed chi-square for a correct<br />

model should be less than a value χ 2 . (We will discuss the use of this function in<br />

Chapter 15.) Its complement Q(χ 2 |ν) is the probability that the observed chi-square<br />

will exceed the value χ 2 by chance even for a correct model. In both cases ν is an<br />

integer, the number of degrees of freedom. The functions have the limiting values<br />

P (0|ν) =0 P (∞|ν) =1 (6.2.16)<br />

Q(0|ν) =1 Q(∞|ν) =0 (6.2.17)<br />

and the following relation to the incomplete gamma functions,<br />

P (χ 2 � �<br />

ν χ2<br />

|ν) =P ,<br />

2 2<br />

�<br />

ν<br />

= gammp<br />

χ2<br />

,<br />

2 2<br />

Q(χ 2 � � � �<br />

ν χ2<br />

ν χ2<br />

|ν) =Q , = gammq ,<br />

2 2<br />

2 2<br />

�<br />

(6.2.18)<br />

(6.2.19)<br />

Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5)<br />

Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by <strong>Numerical</strong> Recipes Software.<br />

Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copying of machinereadable<br />

files (including this one) to any server computer, is strictly prohibited. To order <strong>Numerical</strong> Recipes books or CDROMs, visit website<br />

http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America).

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!