Go to the source code of this file.
|  | 
| module | splines | 
|  | Simple splines Splines are fully specified by the interpolation points, except that at the ends, we have the freedom to prescribe the second derivatives. If we know a derivative at an end (exactly), then best is to impose that. Otherwise, it is better to use the "consistent" end conditions: the second derivative is determined such that it is smooth. 
 | 
|  | 
|  | 
| real(dp) function, dimension(size(xnew)), public | splines::spline3 (x, y, xnew) | 
|  | ... 
 | 
|  | 
| subroutine, public | splines::spline3ders (x, y, xnew, ynew, dynew, d2ynew) | 
|  | ... 
 | 
|  |