Spline fitting methods.
More...
#include <SplineFitting.h>
|
typedef SplineType::KnotVectorType | KnotVectorType |
|
|
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...
|
|
template<typename SplineType>
struct Eigen::SplineFitting< SplineType >
Spline fitting methods.
§ Interpolate() [1/2]
template<typename SplineType >
template<typename PointArrayType >
SplineType Eigen::SplineFitting< SplineType >::Interpolate |
( |
const PointArrayType & |
pts, |
|
|
DenseIndex |
degree |
|
) |
| |
|
static |
Fits an interpolating Spline to the given data points.
- Parameters
-
pts | The points for which an interpolating spline will be computed. |
degree | The degree of the interpolating spline. |
- Returns
- A spline interpolating the initially provided points.
§ Interpolate() [2/2]
template<typename SplineType >
template<typename PointArrayType >
SplineType Eigen::SplineFitting< SplineType >::Interpolate |
( |
const PointArrayType & |
pts, |
|
|
DenseIndex |
degree, |
|
|
const KnotVectorType & |
knot_parameters |
|
) |
| |
|
static |
Fits an interpolating Spline to the given data points.
- Parameters
-
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. |
- Returns
- A spline interpolating the initially provided points.
The documentation for this struct was generated from the following file: