Skip to main content

LobattoKernelEvalAll

Evaluate all Lobatto kernel.

Interface 1

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