<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Gamma &#x2F; Error-Funktion für C++]]></title><description><![CDATA[<p>Ich suche nach einer Implemetierung der Errorfunction für C++.<br />
Gefunden habe ich den Link<br />
<a href="http://www.momonga.t.u-tokyo.ac.jp/~ooura/gamerf.html" rel="nofollow">www.momonga.t.u-tokyo.ac.jp/~ooura/gamerf.html</a></p>
<p>der auch auf Mathtools verlinkt ist, allerdings ist die Webseite down.</p>
<p>Kennt jemand eine Implementierung dieser Mathematischen Funktion die idealerweise kostenlos und frei verfügbar ist - und auch unter Windows läuft ?</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/179981/gamma-error-funktion-für-c</link><generator>RSS for Node</generator><lastBuildDate>Mon, 21 Sep 2026 13:08:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/179981.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 27 Apr 2007 09:59:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Gamma &#x2F; Error-Funktion für C++ on Fri, 27 Apr 2007 09:59:32 GMT]]></title><description><![CDATA[<p>Ich suche nach einer Implemetierung der Errorfunction für C++.<br />
Gefunden habe ich den Link<br />
<a href="http://www.momonga.t.u-tokyo.ac.jp/~ooura/gamerf.html" rel="nofollow">www.momonga.t.u-tokyo.ac.jp/~ooura/gamerf.html</a></p>
<p>der auch auf Mathtools verlinkt ist, allerdings ist die Webseite down.</p>
<p>Kennt jemand eine Implementierung dieser Mathematischen Funktion die idealerweise kostenlos und frei verfügbar ist - und auch unter Windows läuft ?</p>
<p>Matthias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1274451</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1274451</guid><dc:creator><![CDATA[pospiech]]></dc:creator><pubDate>Fri, 27 Apr 2007 09:59:32 GMT</pubDate></item><item><title><![CDATA[Reply to Gamma &#x2F; Error-Funktion für C++ on Fri, 27 Apr 2007 10:11:14 GMT]]></title><description><![CDATA[<p><a href="http://www.codecogs.com/d-ox/maths/special/errorfn_inv.php" rel="nofollow">http://www.codecogs.com/d-ox/maths/special/errorfn_inv.php</a><br />
Sonst: google</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1274459</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1274459</guid><dc:creator><![CDATA[...]]></dc:creator><pubDate>Fri, 27 Apr 2007 10:11:14 GMT</pubDate></item><item><title><![CDATA[Reply to Gamma &#x2F; Error-Funktion für C++ on Fri, 27 Apr 2007 14:54:29 GMT]]></title><description><![CDATA[<p>versuchs mal damit:</p>
<pre><code class="language-cpp">double erf(double x)
{
 double y = 1.0 / ( 1.0 + 0.3275911 * x);   
 return 1 - (((((
        + 1.061405429  * y
        - 1.453152027) * y
        + 1.421413741) * y
        - 0.284496736) * y 
        + 0.254829592) * y) 
        * exp(-x*x);
}
</code></pre>
<p>Diese Approximation findest du im Abramowitz/Stegun. Der max. Fehler ist 1.5*10^-7.<br />
Irgendwo habe ich noch eine genauere rumliegen.<br />
vg, tesu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1274700</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1274700</guid><dc:creator><![CDATA[tesuji]]></dc:creator><pubDate>Fri, 27 Apr 2007 14:54:29 GMT</pubDate></item></channel></rss>