Skip to main content

UnscaledLobattoEval

Evaluate UnscaledLobatto polynomial.

Interface

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

Interface 2

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