Files | |
| file | psSpline.h |
| Standard Mathematical Functions. | |
| file | psSpline.h |
| Standard Mathematical Functions. | |
Data Structures | |
| struct | psSpline1D |
| One-Dimensional Spline. More... | |
Functions | |
| psSpline1D * | psSpline1DAlloc (int n, int order, float min, float max) |
| Allocates a psSpline1D structure. | |
| psSpline1D * | psSpline1DAllocGeneric (const psVector *bounds, int order) |
| Allocates a psSpline1D structure. | |
| float | psSpline1DEval (const psSpline1D *spline, float x) |
| Evaluates 1-D spline polynomials at a specific coordinate. | |
| psVector * | psSpline1DEvalVector (const psSpline1D *spline, const psVector *x) |
| Evaluates 1-D spline polynomials at a set of specific coordinates. | |
| psS32 | p_psVectorBinDisect (psVector *bins, psScalar *x) |
| Performs a binary disection on a given vector. | |
| psScalar * | p_psVectorInterpolate (psVector *domain, psVector *range, int order, psScalar *x) |
| Interpolates a series of data points for evaluation at a specific coordinate. | |
| bool | psMemCheckSpline1D (psPtr ptr) |
| Checks the type of a particular pointer. | |
| psSpline1D * | psVectorFitSpline1D (psSpline1D *mySpline, const psVector *x, const psVector *y, const psVector *yErr) |
| Derive a one-dimensional spline fit. | |
| psSpline1D * | psVectorFitSpline1DNEW (const psVector *x, const psVector *y, int nKnots) |
|
||||||||||||
|
Performs a binary disection on a given vector. Searches through an array of data for a specified value.
|
|
||||||||||||||||||||
|
Interpolates a series of data points for evaluation at a specific coordinate. Uses a Lagrange interpolation method.
|
|
|
Checks the type of a particular pointer. Uses the appropriate deallocation function in psMemBlock to check the ptr datatype.
|
|
||||||||||||||||||||
|
Allocates a psSpline1D structure. Allocator for psSpline1D where the bounds are implicitly specified through specifying min and max values along with the number of splines.
|
|
||||||||||||
|
Allocates a psSpline1D structure. Allocator for psSpline1D where the bounds are explicitly specified.
|
|
||||||||||||
|
Evaluates 1-D spline polynomials at a specific coordinate.
|
|
||||||||||||
|
Evaluates 1-D spline polynomials at a set of specific coordinates.
|
|
||||||||||||||||||||
|
Derive a one-dimensional spline fit. Given a psSpline1D data structure and a set of x,y vectors, this routine generates the linear splines which satisfy those data points.
|
|
||||||||||||||||
|
|
1.4.2