diff --git a/src/Numerics/Interpolation/Algorithms/BulirschStoerRationalInterpolation.cs b/src/Numerics/Interpolation/Algorithms/BulirschStoerRationalInterpolation.cs index 2d5ff753..9734e8ed 100644 --- a/src/Numerics/Interpolation/Algorithms/BulirschStoerRationalInterpolation.cs +++ b/src/Numerics/Interpolation/Algorithms/BulirschStoerRationalInterpolation.cs @@ -73,8 +73,8 @@ namespace MathNet.Numerics.Interpolation.Algorithms /// /// Gets a value indicating whether the algorithm supports differentiation (interpolated derivative). /// - /// - /// + /// + /// bool IInterpolation.SupportsDifferentiation { get { return false; } @@ -83,7 +83,7 @@ namespace MathNet.Numerics.Interpolation.Algorithms /// /// Gets a value indicating whether the algorithm supports integration (interpolated quadrature). /// - /// + /// bool IInterpolation.SupportsIntegration { get { return false; } @@ -190,7 +190,7 @@ namespace MathNet.Numerics.Interpolation.Algorithms /// Point t to interpolate at. /// Interpolated first derivative at point t. /// - /// + /// double IInterpolation.Differentiate(double t) { throw new NotSupportedException(); @@ -204,7 +204,7 @@ namespace MathNet.Numerics.Interpolation.Algorithms /// Interpolated second derivative at point t. /// Interpolated first derivative at point t. /// - /// + /// double IInterpolation.Differentiate( double t, out double interpolatedValue, diff --git a/src/Numerics/Interpolation/Algorithms/NevillePolynomialInterpolation.cs b/src/Numerics/Interpolation/Algorithms/NevillePolynomialInterpolation.cs index f38ae4a6..469cfd8c 100644 --- a/src/Numerics/Interpolation/Algorithms/NevillePolynomialInterpolation.cs +++ b/src/Numerics/Interpolation/Algorithms/NevillePolynomialInterpolation.cs @@ -88,7 +88,7 @@ namespace MathNet.Numerics.Interpolation.Algorithms /// /// Gets a value indicating whether the algorithm supports integration (interpolated quadrature). /// - /// + /// bool IInterpolation.SupportsIntegration { get { return false; }