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. | |
template<typename PointArrayType > | |
static SplineType | Interpolate (const PointArrayType &pts, DenseIndex degree, const KnotVectorType &knot_parameters) |
Fits an interpolating Spline to the given data points. |
Spline fitting methods.
Definition at line 88 of file SplineFitting.h.
typedef SplineType::KnotVectorType Eigen::SplineFitting< SplineType >::KnotVectorType |
Definition at line 90 of file SplineFitting.h.
SplineType Eigen::SplineFitting< SplineType >::Interpolate | ( | const PointArrayType & | pts, |
DenseIndex | degree | ||
) | [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 151 of file SplineFitting.h.
SplineType Eigen::SplineFitting< SplineType >::Interpolate | ( | const PointArrayType & | pts, |
DenseIndex | degree, | ||
const KnotVectorType & | knot_parameters | ||
) | [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 118 of file SplineFitting.h.