[Numpy-svn] r8321 - trunk/numpy/core/src/npymath

numpy-svn at scipy.org numpy-svn at scipy.org
Mon Apr 5 00:03:22 EDT 2010


Author: charris
Date: 2010-04-04 23:03:22 -0500 (Sun, 04 Apr 2010)
New Revision: 8321

Modified:
   trunk/numpy/core/src/npymath/npy_math.c.src
Log:
ENH: Use standard npy constant definitions in log2, exp2 functions.
STY: Some cleanups, fix goto into if statement.
BUG: Use proper name for expm1, not exp1m.

Modified: trunk/numpy/core/src/npymath/npy_math.c.src
===================================================================
--- trunk/numpy/core/src/npymath/npy_math.c.src	2010-04-05 04:03:19 UTC (rev 8320)
+++ trunk/numpy/core/src/npymath/npy_math.c.src	2010-04-05 04:03:22 UTC (rev 8321)
@@ -154,11 +154,11 @@
     }
 
     /* compute y/x */
-    k = (iy - ix)>>20;
-    if(k > 60) {            /* |y/x| >  2**60 */
+    k = (iy - ix) >> 20;
+    if (k > 60) {            /* |y/x| >  2**60 */
         z = NPY_PI_2 + 0.5 * NPY_DBL_EPSILON;
         m &= 1;
-    } else if(hx < 0 && k < -60) {
+    } else if (hx < 0 && k < -60) {
         z = 0.0;    /* 0 > |y|/x > -2**-60 */
     } else {
         z = npy_atan(npy_fabs(y/x));        /* safe to do y/x */
@@ -209,7 +209,7 @@
 #ifndef HAVE_ACOSH
 double npy_acosh(double x)
 {
-    return 2*npy_log(npy_sqrt((x+1.0)/2)+npy_sqrt((x-1.0)/2));
+    return 2*npy_log(npy_sqrt((x + 1.0)/2) + npy_sqrt((x - 1.0)/2));
 }
 #endif
 
@@ -255,14 +255,15 @@
     y = npy_floor(x);
     r = x - y;
 
-    if (r > 0.5) goto rndup;
+    if (r > 0.5) {
+        y += 1.0;
+    }
 
     /* Round to nearest even */
-    if (r==0.5) {
+    if (r == 0.5) {
         r = y - 2.0*npy_floor(0.5*y);
-        if (r==1.0) {
-        rndup:
-            y+=1.0;
+        if (r == 1.0) {
+            y += 1.0;
         }
     }
     return y;
@@ -277,21 +278,17 @@
 #endif
 
 #ifndef HAVE_EXP2
-#define LOG2 0.69314718055994530943
 double npy_exp2(double x)
 {
-    return npy_exp(LOG2*x);
+    return npy_exp(NPY_LOGE2*x);
 }
-#undef LOG2
 #endif
 
 #ifndef HAVE_LOG2
-#define INVLOG2 1.4426950408889634074
 double npy_log2(double x)
 {
-    return INVLOG2*npy_log(x);
+    return NPY_LOG2E*npy_log(x);
 }
-#undef INVLOG2
 #endif
 
 /*
@@ -447,9 +444,9 @@
     return LOG2E*npy_log1p at c@(x);
 }
 
- at type@ npy_exp2_1m at c@(@type@ x)
+ at type@ npy_exp2_m1 at c@(@type@ x)
 {
-    return npy_exp1m at c@(LOGE2*x);
+    return npy_expm1 at c@(LOGE2*x);
 }
 
 @type@ npy_logaddexp at c@(@type@ x, @type@ y)




More information about the Numpy-svn mailing list