Skip to main content

UnscaledLobattoKernelEvalAll

Evaluate all UnscaledLobatto kernel.

Interface 1

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