Skip to main content

UnscaledLobattoEvalAll

Evaluate all UnscaledLobatto polynomials upto order n.

Interface 1

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

Interface 2

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