aboutsummaryrefslogtreecommitdiff
path: root/science/afni/files/patch-misc_math.c
blob: 50623944f078039d1b7e4bdc9538ff995ae51fc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- misc_math.c.orig	2015-11-06 21:25:08 UTC
+++ misc_math.c
@@ -1,6 +1,13 @@
 
+/* For older libm */
+double log2(double n)
+{
+    return log(n) / log(2.0);
+}
+
 /* move from Deconvolve.c into libmri.a         21 Jun 2010 [rickr] */
 
+
 double legendre( double x , int m )   /* Legendre polynomials over [-1,1] */
 {
    if( m < 0 ) return 1.0 ;    /* bad input */