TABLE OF CONTENTS
CWrappers/cevalEinte [ Functions ]
NAME
cevalEinte --- wrapper for the C implementation of cevalEinte
FUNCTION
see evalEinte
SYNOPSIS
3187 cevalEinte <- function(knots, ord, N = 1)
SOURCE
3190 { 3191 K <- length(knots) - 2 * ord 3192 einte <- rep(0, K + ord); 3193 out <- .C("cevalEinte", 3194 einte = as.double(einte), 3195 knots = as.double(knots), 3196 ord = as.integer(ord), 3197 K = as.integer(K), 3198 N = as.integer(N) 3199 ) 3200 einte <- out$einte 3201 return(einte) 3202 }