Chebyshev1LeadingCoeffRatio
Ratio of Leading coefficient of Chebyshev1 polynomials.
INTERFACE
MODULE PURE FUNCTION Chebyshev1LeadingCoeffRatio(n) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
!! order of Chebyshev1 polynomial
REAL(DFP) :: ans
!! answer
END FUNCTION Chebyshev1LeadingCoeffRatio
END INTERFACE
Examples
- ️܀ See example
- ↢
program main
use easifembase
implicit none
CALL Display(Chebyshev1LeadingCoeffRatio(5), "ans: " )
end program main
results
ans: 2.00000