/[gsl]/gsl/cdf/cdf_gamma.c
ViewVC logotype

Diff of /gsl/cdf/cdf_gamma.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.7 by jstover, Mon Feb 17 23:00:08 2003 UTC revision 1.1.2.8 by jstover, Mon Feb 17 23:09:32 2003 UTC
# Line 108  double gsl_cdf_gamma_P ( double x, doubl Line 108  double gsl_cdf_gamma_P ( double x, doubl
108        /*        /*
109         * Use Peizer and Pratt's normal approximation above.         * Use Peizer and Pratt's normal approximation above.
110         */         */
111        z = norm_arg ( y, shape );        z = gsl_cdf_norm_arg ( y, shape );
112        val = gsl_cdf_gauss_P ( z );        val = gsl_cdf_gauss_P ( z );
113        return val;        return val;
114      }      }
# Line 141  double gsl_cdf_gamma_Q ( double x, doubl Line 141  double gsl_cdf_gamma_Q ( double x, doubl
141        /*        /*
142         * Peizer and Pratt's approximation mentioned above.         * Peizer and Pratt's approximation mentioned above.
143         */         */
144        z = norm_arg ( y, shape );        z = gsl_cdf_norm_arg ( y, shape );
145        val = gsl_cdf_gauss_Q ( z );        val = gsl_cdf_gauss_Q ( z );
146        return val;        return val;
147      }      }

Legend:
Removed from v.1.1.2.7  
changed lines
  Added in v.1.1.2.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26