Skip to main content

LobattoEval

Evaluate Lobatto polynomial.

Interface

INTERFACE
MODULE PURE FUNCTION LobattoEval(n, x) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
REAL(DFP), INTENT(IN) :: x
REAL(DFP) :: ans
!! Evaluate Lobatto polynomial of order n at point x
END FUNCTION LobattoEval
END INTERFACE

Interface 2

INTERFACE
MODULE PURE FUNCTION LobattoEval(n, x) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
REAL(DFP), INTENT(IN) :: x(:)
REAL(DFP) :: ans(SIZE(x))
!! Evaluate Lobatto polynomial of order n at point x
END FUNCTION LobattoEval
END INTERFACE