TABLE OF CONTENTS


CWrappers/cevalBinte [ Functions ]

NAME

    cevalBinte --- wrapper for the C implementation of evalBinte

FUNCTION

see evalBinte

SYNOPSIS

3211 cevalBinte <- function(knots, ord)

SOURCE

3214 {
3215     K <- length(knots) - 2 * ord;
3216     binte <- rep(0, K + ord);
3217     out <- .C("cevalBinte",
3218             binte = as.double(binte),
3219             knots = as.double(knots),
3220             ord = as.integer(ord),
3221             K = as.integer(K)
3222           )
3223     binte <- out$binte
3224     return(binte)
3225 }