[Scipy-svn] r6495 - trunk/scipy/stats

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Jun 9 00:27:20 EDT 2010


Author: oliphant
Date: 2010-06-08 23:27:20 -0500 (Tue, 08 Jun 2010)
New Revision: 6495

Modified:
   trunk/scipy/stats/distributions.py
Log:
Use correct underlying function.

Modified: trunk/scipy/stats/distributions.py
===================================================================
--- trunk/scipy/stats/distributions.py	2010-06-09 04:24:45 UTC (rev 6494)
+++ trunk/scipy/stats/distributions.py	2010-06-09 04:27:20 UTC (rev 6495)
@@ -4360,7 +4360,7 @@
     def _logpdf(self, x):
         return invnorm._logpdf(x, 1.0)
     def _cdf(self, x):
-        return invnorm._logcdf(x, 1.0)
+        return invnorm._cdf(x, 1.0)
     def _stats(self):
         return 1.0, 1.0, 3.0, 15.0
 wald = wald_gen(a=0.0, name="wald", extradoc="""




More information about the Scipy-svn mailing list