Skip to main content

LegendreLeadingCoeff

Leading coefficient of Legendre polynomials.

Examples

INTERFACE
MODULE PURE FUNCTION LegendreLeadingCoeff(n) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
!! order of Legendre polynomial
REAL(DFP) :: ans
!! answer
END FUNCTION LegendreLeadingCoeff
END INTERFACE