Skip to main content

UltrasphericalBeta

Recurrence coeff for Ultraspherical polynomial.

Interface

INTERFACE
MODULE PURE FUNCTION UltrasphericalBeta(n, lambda) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
!! order of Ultraspherical polynomial
REAL(DFP), INTENT(IN) :: lambda
!! lambda should be greater than -0.5
REAL(DFP) :: ans
!! answer
END FUNCTION UltrasphericalBeta
END INTERFACE