Remove UTF-8 chars

Change-Id: I1e98dd7441d2de05e0b3b0937e496103177631f8
This commit is contained in:
huangqinjin
2018-10-12 10:39:02 +08:00
committed by Sameer Agarwal
parent 9350e57a45
commit 21d40daa00
9 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ The one dimensional interpolation is based on the Cubic Hermite Spline. This
interpolation method requires knowledge of the function derivatives at the
control points, however we only know the function values. Consequently, we will
use the data to estimate derivatives at the control points. The choice of how to
compute the derivatives is not unique and Ceres uses the CatmullRom Spline
compute the derivatives is not unique and Ceres uses the Catmull-Rom Spline
variant which uses `0.5 * (p_{k+1} - p_{k-1})` as the derivative for control
point `p_k.` This produces a first order differentiable interpolating
function. The two dimensional interpolation scheme is a generalization of the