Skip to main content

LobattoEvalAll

Evaluate all Lobatto polynomials upto order n.

Interface 1

INTERFACE
MODULE PURE FUNCTION LobattoEvalAll(n, x) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
REAL(DFP), INTENT(IN) :: x
REAL(DFP) :: ans(n + 1)
!! Evaluate Lobatto polynomial of order = 0 to n (total n+1)
!! at point x
END FUNCTION LobattoEvalAll
END INTERFACE

Interface 2

INTERFACE
MODULE PURE FUNCTION LobattoEvalAll(n, x) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n
REAL(DFP), INTENT(IN) :: x(:)
REAL(DFP) :: ans(SIZE(x), n + 1)
!! Evaluate Lobatto polynomial of order = 0 to n (total n+1)
!! at point x
END FUNCTION LobattoEvalAll
END INTERFACE