diff --git a/README.md b/README.md index 55ba843f..ee2d349b 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,8 @@ corresponding to `(u,t)` pairs. - `CubicSpline(u,t)` - A cubic spline interpolation. +- `AkimaInterpolation(u, t)` - Akima spline interpolation provides a smoothing effect and is computationally efficient. + - `BSplineInterpolation(u,t,d,pVec,knotVec)` - An interpolation B-spline. This is a B-spline which hits each of the data points. The argument choices are: - `d` - degree of B-spline - `pVec` - Symbol to Parameters Vector, `pVec = :Uniform` for uniform spaced parameters and `pVec = :ArcLen` for parameters generated by chord length method.