Skip to main content

LobattoZeros

Returns the zeros of Lobatto polynomials.

Interface

INTERFACE
MODULE FUNCTION LobattoZeros(n) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
!! order of Lobatto polynomial, should be greater than equal to 2
REAL(DFP) :: ans(n)
!!
END FUNCTION LobattoZeros
END INTERFACE