Skip to main content

UltrasphericalAlpha

Recurrence coeff for Ultraspherical polynomial.

Interface

INTERFACE
MODULE PURE FUNCTION UltrasphericalAlpha(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 UltrasphericalAlpha
END INTERFACE