lens_calibrate/HermiteSpline.c File Reference
#include <stdlib.h>
#include <math.h>
#include "HermiteSpline.h"
Include dependency graph for HermiteSpline.c:
|
Defines |
| #define | fIEPS 1.e-11 |
Functions |
| double * | spline_hermite_set (double *c, int ndata, double tdata[], double ydata[], double ypdata[]) |
| | Tabulate coefficients for Hermit Spline Interpolation *.
|
| int | spline_hermite_val (int ndata, double tdata[], double c[], double tval, double *sval, double *spval) |
| | TKS mods Feb 2008 add a return value: 0 failure, 1 success use interpolating interval search; fail if arg out of range don't compute derivative if spval is null declare local vars register.
|
| int | spline_tangents_set (int ndata, double tdata[], double ydata[], double ypd[]) |
| int | findInterval (int n, double t[], double x) |
Define Documentation
Function Documentation
|
|
Tabulate coefficients for Hermit Spline Interpolation *.
|
|
|
TKS mods Feb 2008 add a return value: 0 failure, 1 success use interpolating interval search; fail if arg out of range don't compute derivative if spval is null declare local vars register.
|