Popular recipes tagged "integration" but not "process"http://code.activestate.com/recipes/tags/integration-process/2009-09-09T21:03:10-07:00ActiveState Code RecipesGaussian integration with or without Log singularity (Python) 2009-09-09T21:03:10-07:00Gabriel Genellinahttp://code.activestate.com/recipes/users/924636/http://code.activestate.com/recipes/576900-gaussian-integration-with-or-without-log-singulari/ <p style="color: grey"> Python recipe 576900 by <a href="/recipes/users/924636/">Gabriel Genellina</a> (<a href="/recipes/tags/algorithms/">algorithms</a>, <a href="/recipes/tags/area/">area</a>, <a href="/recipes/tags/integration/">integration</a>, <a href="/recipes/tags/math/">math</a>). </p> <p>The Gaussian quadrature is among the most accurate integration scheme for smooth integrands. It replaces a integral by a sum of sampled values of the integrand function times some weight factors.</p> <p>This is strictly a minor rewrite of <a href="http://code.activestate.com/recipes/52292/">recipe 52292</a>, just to make it compatible with Python 2.4 and above. 2to3 converts it perfectly to be used with Python 3.x</p> <p><em>All</em> credit is due to the original author, Alexander Pletzer.</p> Quick Numerical Integration (Python) 2009-05-19T05:24:37-07:00alexander bakerhttp://code.activestate.com/recipes/users/4166679/http://code.activestate.com/recipes/576765-quick-numerical-integration/ <p style="color: grey"> Python recipe 576765 by <a href="/recipes/users/4166679/">alexander baker</a> (<a href="/recipes/tags/integration/">integration</a>, <a href="/recipes/tags/scipy/">scipy</a>). </p> <p>Quick Numerical Integration</p>