Finalize various interpolation implementations

This commit is contained in:
Dennis Eichhorn 2019-10-17 10:50:57 +02:00
parent 68f3ecc6f9
commit 1700f096ae
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ use phpOMS\Math\Matrix\Vector;
* @link https://orange-management.org * @link https://orange-management.org
* @since 1.0.0 * @since 1.0.0
*/ */
class CubicSplineInterpolation implements InterpolationInterface final class CubicSplineInterpolation implements InterpolationInterface
{ {
/** /**
* Points for spline interpolation * Points for spline interpolation

View File

@ -22,7 +22,7 @@ namespace phpOMS\Math\Numerics\Interpolation;
* @link https://orange-management.org * @link https://orange-management.org
* @since 1.0.0 * @since 1.0.0
*/ */
class LagrangeInterpolation implements InterpolationInterface final class LagrangeInterpolation implements InterpolationInterface
{ {
/** /**
* Points for spline interpolation * Points for spline interpolation

View File

@ -24,7 +24,7 @@ use phpOMS\Math\Matrix\Vector;
* @link https://orange-management.org * @link https://orange-management.org
* @since 1.0.0 * @since 1.0.0
*/ */
class LinearInterpolation implements InterpolationInterface final class LinearInterpolation implements InterpolationInterface
{ {
/** /**
* Points for spline interpolation * Points for spline interpolation