From 42577cf88e1ad72db3c582ef725b1d5d47af8b68 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Fri, 14 Aug 2009 04:24:26 +0800 Subject: [PATCH] interpolation: xmldoc link references Signed-off-by: Christoph Ruegg --- .../Algorithms/BulirschStoerRationalInterpolation.cs | 10 +++++----- .../Algorithms/NevillePolynomialInterpolation.cs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) 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; }