archimedes.quadrature.gauss_laguerreΒΆ
- archimedes.quadrature.gauss_laguerre(
- n: int,
- rate: float | None = None,
- start: float | None = None,
Gauss-Laguerre quadrature rule with
nnodes.Nodes are the roots of the degree-
nLaguerre polynomial \(L_n(x)\). The rule is exact for polynomials up to degree \(2n - 1\), weighted by the reference weight \(e^{-x}\) on \([0, \infty)\).- Parameters:
n (int) β Number of quadrature nodes.
rate (float, optional) β Rate/location of the target exponential weight. Default
rate=1,start=0.start (float, optional) β Rate/location of the target exponential weight. Default
rate=1,start=0.
- Returns:
rule β Gauss-Laguerre rule with
nnodes on \([0, \infty)\), exact to degree \(2n - 1\), mapped byrate/startif given.- Return type: