Spline fitting methods. More...
#include <SplineFitting.h>
Public Types | |
typedef SplineType::KnotVectorType | KnotVectorType |
Static Public Member Functions | |
template<typename PointArrayType > | |
static SplineType | Interpolate (const PointArrayType &pts, DenseIndex degree) |
Fits an interpolating Spline to the given data points. More... | |
template<typename PointArrayType > | |
static SplineType | Interpolate (const PointArrayType &pts, DenseIndex degree, const KnotVectorType &knot_parameters) |
Fits an interpolating Spline to the given data points. More... | |
Spline fitting methods.
Definition at line 86 of file SplineFitting.h.
typedef SplineType::KnotVectorType Eigen::SplineFitting< SplineType >::KnotVectorType |
Definition at line 88 of file SplineFitting.h.
|
static |
Fits an interpolating Spline to the given data points.
pts | The points for which an interpolating spline will be computed. |
degree | The degree of the interpolating spline. |
Definition at line 148 of file SplineFitting.h.
|
static |
Fits an interpolating Spline to the given data points.
pts | The points for which an interpolating spline will be computed. |
degree | The degree of the interpolating spline. |
knot_parameters | The knot parameters for the interpolation. |
Definition at line 116 of file SplineFitting.h.