Skip to content

Commit d821271

Browse files
authored
ENH: integrate: integrate.lebedev_rule: points and weights of Lebedev quadrature (scipy#21609)
reviewed at scipy#21609
1 parent f57d2e7 commit d821271

File tree

5 files changed

+5489
-1
lines changed

5 files changed

+5489
-1
lines changed

LICENSES_bundled.txt

+5
Original file line numberDiff line numberDiff line change
@@ -296,3 +296,8 @@ Name: Chebfun
296296
Files: scipy/interpolate/[_aaa.py, tests/test_aaa.py]
297297
License 3-Clause BSD
298298
For details, see scipy/interpolate/_aaa.py
299+
300+
Name: getLebedevSphere
301+
Files: scipy/integrate/_lebedev.py
302+
License 2-Clause BSD
303+
For details, see scipy/integrate/_lebedev.py

scipy/integrate/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
nquad -- General purpose N-D integration
2020
fixed_quad -- Integrate func(x) using Gaussian quadrature of order n
2121
newton_cotes -- Weights and error coefficient for Newton-Cotes integration
22+
lebedev_rule
2223
qmc_quad -- N-D integration using Quasi-Monte Carlo quadrature
2324
IntegrationWarning -- Warning on issues during integration
2425
@@ -108,6 +109,7 @@
108109
from ._quad_vec import quad_vec
109110
from ._tanhsinh import nsum
110111
from ._cubature import cubature
112+
from ._lebedev import lebedev_rule
111113

112114
# Deprecated namespaces, to be removed in v2.0.0
113115
from . import dop, lsoda, vode, odepack, quadpack

0 commit comments

Comments
 (0)