Is there an easily available implementation of erf() for Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:20:45Z http://stackoverflow.com/feeds/question/457408 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/457408/is-there-an-easily-available-implementation-of-erf-for-python 4 Is there an easily available implementation of erf() for Python? rog 2009-01-19T12:10:58Z 2009-01-20T21:44:09Z <p>I can implement the error function, erf, myself, but I'd prefer not to. Is there a python package with no external dependencies that contains an implementation of this function? I have found http://pylab.sourceforge.net/packages/included_functions.html>this but this seems to be part of some much larger package (and it's not even clear which one!).</p> <p>I'm sorry if this is a naive question - I'm totally new to Python.</p> http://stackoverflow.com/questions/457408/is-there-an-easily-available-implementation-of-erf-for-python/457475#457475 3 Answer by Mapad for Is there an easily available implementation of erf() for Python? Mapad 2009-01-19T12:47:09Z 2009-01-19T12:52:12Z <p>I would recommend you download <a href="http://sourceforge.net/project/showfiles.php?group_id=1369&amp;package_id=175103" rel="nofollow">numpy</a> (to have efficiant matrix in python) and <a href="http://www.scipy.org/" rel="nofollow">scipy</a> (a Matlab toolbox substitute, which uses numpy). The erf function lies in scipy.</p> <pre><code>&gt;&gt;&gt;import scipy.special.erf as erf &gt;&gt;&gt;help(erf) </code></pre> <p>You can also use the erf function defined in pylab, but this is more intended at plotting the results of the things you compute with numpy and scipy. If you want an all-in-one installation of these software you can use directly the <a href="http://www.enthought.com/products/epd.php" rel="nofollow">Python Enthought distribution</a>.</p> http://stackoverflow.com/questions/457408/is-there-an-easily-available-implementation-of-erf-for-python/457805#457805 7 Answer by John D. Cook for Is there an easily available implementation of erf() for Python? John D. Cook 2009-01-19T14:46:13Z 2009-01-19T15:56:35Z <p>I recommend SciPy for numerical functions in Python, but if you want something with no dependencies, here is a function with an error error is less than 1.5 * 10<sup>-7</sup> for all inputs.</p> <pre><code>def erf(x): # save the sign of x sign = 1 if x &lt; 0: sign = -1 x = abs(x) # constants a1 = 0.254829592 a2 = -0.284496736 a3 = 1.421413741 a4 = -1.453152027 a5 = 1.061405429 p = 0.3275911 # A&amp;S formula 7.1.26 t = 1.0/(1.0 + p*x) y = 1.0 - (((((a5*t + a4)*t) + a3)*t + a2)*t + a1)*t*math.exp(-x*x) return sign*y # erf(-x) = -erf(x) </code></pre> <p>The algorithm comes from <a href="http://rads.stackoverflow.com/amzn/click/0486612724" rel="nofollow">Handbook of Mathematical Functions</a>, formula 7.1.26.</p> http://stackoverflow.com/questions/457408/is-there-an-easily-available-implementation-of-erf-for-python/458069#458069 1 Answer by rog for Is there an easily available implementation of erf() for Python? rog 2009-01-19T15:54:40Z 2009-01-19T16:04:32Z <p>To answer my own question, I have ended up using the following code, adapted from a Java version I found elsewhere on the web:</p> <pre><code># from: http://www.cs.princeton.edu/introcs/21function/ErrorFunction.java.html # Implements the Gauss error function. # erf(z) = 2 / sqrt(pi) * integral(exp(-t*t), t = 0..z) # # fractional error in math formula less than 1.2 * 10 ^ -7. # although subject to catastrophic cancellation when z in very close to 0 # from Chebyshev fitting formula for erf(z) from Numerical Recipes, 6.2 def erf(z): t = 1.0 / (1.0 + 0.5 * abs(z)) # use Horner's method ans = 1 - t * math.exp( -z*z - 1.26551223 + t * ( 1.00002368 + t * ( 0.37409196 + t * ( 0.09678418 + t * (-0.18628806 + t * ( 0.27886807 + t * (-1.13520398 + t * ( 1.48851587 + t * (-0.82215223 + t * ( 0.17087277)))))))))) if z &gt;= 0.0: return ans else: return -ans </code></pre> http://stackoverflow.com/questions/457408/is-there-an-easily-available-implementation-of-erf-for-python/463261#463261 2 Answer by Charles McCreary for Is there an easily available implementation of erf() for Python? Charles McCreary 2009-01-20T21:44:09Z 2009-01-20T21:44:09Z <p>A pure python implementation can be found in the mpmath module (<a href="http://code.google.com/p/mpmath/" rel="nofollow">http://code.google.com/p/mpmath/</a>)</p> <p>From the doc string:</p> <blockquote> <blockquote> <blockquote> <p>from mpmath import * mp.dps = 15 print erf(0) 0.0 print erf(1) 0.842700792949715 print erf(-1) -0.842700792949715 print erf(inf) 1.0 print erf(-inf) -1.0</p> </blockquote> </blockquote> </blockquote> <p>For large real <code>x</code>, <code>\mathrm{erf}(x)</code> approaches 1 very rapidly::</p> <pre><code>&gt;&gt;&gt; print erf(3) 0.999977909503001 &gt;&gt;&gt; print erf(5) 0.999999999998463 </code></pre> <p>The error function is an odd function::</p> <pre><code>&gt;&gt;&gt; nprint(chop(taylor(erf, 0, 5))) [0.0, 1.12838, 0.0, -0.376126, 0.0, 0.112838] </code></pre> <p>:func:<code>erf</code> implements arbitrary-precision evaluation and supports complex numbers::</p> <pre><code>&gt;&gt;&gt; mp.dps = 50 &gt;&gt;&gt; print erf(0.5) 0.52049987781304653768274665389196452873645157575796 &gt;&gt;&gt; mp.dps = 25 &gt;&gt;&gt; print erf(1+j) (1.316151281697947644880271 + 0.1904534692378346862841089j) </code></pre> <p><strong>Related functions</strong></p> <p>See also :func:<code>erfc</code>, which is more accurate for large <code>x</code>, and :func:<code>erfi</code> which gives the antiderivative of <code>\exp(t^2)</code>.</p> <p>The Fresnel integrals :func:<code>fresnels</code> and :func:<code>fresnelc</code> are also related to the error function.</p>