From 5eb2790be093cc23d4c4808b5c53d79eba22ecb0 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Mon, 25 Jan 2016 22:17:52 +0100 Subject: [PATCH] Fixed minor typo in SplineFitting. --- unsupported/Eigen/src/Splines/SplineFitting.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsupported/Eigen/src/Splines/SplineFitting.h b/unsupported/Eigen/src/Splines/SplineFitting.h index d3c245fa9..8e6a5aaed 100644 --- a/unsupported/Eigen/src/Splines/SplineFitting.h +++ b/unsupported/Eigen/src/Splines/SplineFitting.h @@ -167,7 +167,7 @@ namespace Eigen derivativeKnots.data(), derivativeKnots.data() + derivativeKnots.size(), temporaryKnots.data()); - // Number of control points (one for each point and derivative) plus spline order. + // Number of knots (one for each point and derivative) plus spline order. DenseIndex numKnots = numParameters + numDerivatives + degree + 1; knots.resize(numKnots);