TABLE OF CONTENTS
CsplineUtils/cevalBinte [ Functions ]
NAME
cevalBinte --- compute the integrals of each spline basis function
FUNCTION
C re-implmentation of evalBinte function. See its description for detail.
SYNOPSIS
94 void cevalBinte(double *binte, double *knots, int *ord, int *K)
INPUTS
binte vector of length K+ord to store output knots vector of knots of length K+2*ord ord order of the spline K number of interior knots
SOURCE
98 { 99 for(int j=0; j<*K+*ord; j++) 100 binte[j]=(knots[j+*ord]-knots[j]) / *ord; 101 }