{ } Raw JSON

bundles / scipy latest / scipy / special / _orthogonal / roots_gegenbauer

function

scipy.special._orthogonal:roots_gegenbauer

source: /scipy/special/_orthogonal.py :1488

Signature

def   roots_gegenbauer ( n alpha mu = False )

Summary

Gauss-Gegenbauer quadrature.

Extended Summary

Compute the sample points and weights for Gauss-Gegenbauer quadrature. The sample points are the roots of the nth degree Gegenbauer polynomial, . These sample points and weights correctly integrate polynomials of degree or less over the interval with weight function . See 22.2.3 in [AS] for more details.

Parameters

n : int

quadrature order

alpha : float

alpha must be > -0.5

mu : bool, optional

If True, return the sum of the weights, optional.

Returns

x : ndarray

Sample points

w : ndarray

Weights

mu : float

Sum of the weights

See also

scipy.integrate.fixed_quad

Aliases

  • scipy.special.cg_roots