|
|
|
@ -193,6 +193,9 @@ |
|
|
|
<li><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm#InterpolateNatural">InterpolateNatural</a></li> |
|
|
|
<li><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm#InterpolateNaturalInplace">InterpolateNaturalInplace</a></li> |
|
|
|
<li><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm#InterpolateNaturalSorted">InterpolateNaturalSorted</a></li> |
|
|
|
<li><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm#InterpolatePchip">InterpolatePchip</a></li> |
|
|
|
<li><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm#InterpolatePchipInplace">InterpolatePchipInplace</a></li> |
|
|
|
<li><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm#InterpolatePchipSorted">InterpolatePchipSorted</a></li> |
|
|
|
</ul> |
|
|
|
<h3 class="section">Methods</h3> |
|
|
|
<ul> |
|
|
|
@ -357,6 +360,37 @@ and zero second derivatives at the two boundaries, sorted ascendingly by x. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div id="InterpolatePchip" class="method"> |
|
|
|
<h4><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm">CubicSpline</a> <strong>InterpolatePchip</strong>(<span title="System.Collections.Generic.IEnumerable<double>">IEnumerable<double></span> x, <span title="System.Collections.Generic.IEnumerable<double>">IEnumerable<double></span> y)</h4> |
|
|
|
<div class="content">Create a piecewise cubic Hermite interpolating polynomial from an unsorted set of (x,y) value pairs. |
|
|
|
Monotone-preserving interpolation with continuous first derivative. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div id="InterpolatePchipInplace" class="method"> |
|
|
|
<h4><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm">CubicSpline</a> <strong>InterpolatePchipInplace</strong>(<span title="System.Double[]">Double[]</span> x, <span title="System.Double[]">Double[]</span> y)</h4> |
|
|
|
<div class="content">Create a piecewise cubic Hermite interpolating polynomial from an unsorted set of (x,y) value pairs. |
|
|
|
Monotone-preserving interpolation with continuous first derivative. |
|
|
|
WARNING: Works in-place and can thus causes the data array to be reordered. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div id="InterpolatePchipSorted" class="method"> |
|
|
|
<h4><a href="../MathNet.Numerics.Interpolation/CubicSpline.htm">CubicSpline</a> <strong>InterpolatePchipSorted</strong>(<span title="System.Double[]">Double[]</span> x, <span title="System.Double[]">Double[]</span> y)</h4> |
|
|
|
<div class="content">Create a piecewise cubic Hermite interpolating polynomial from an unsorted set of (x,y) value pairs. |
|
|
|
Monotone-preserving interpolation with continuous first derivative. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
@ -430,32 +464,32 @@ and zero second derivatives at the two boundaries, sorted ascendingly by x. |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div id="Integrate" class="method"> |
|
|
|
<h4><span title="System.double">double</span> <strong>Integrate</strong>(<span title="System.double">double</span> t)</h4> |
|
|
|
<div class="content">Indefinite integral at point t. |
|
|
|
<h4><span title="System.double">double</span> <strong>Integrate</strong>(<span title="System.double">double</span> a, <span title="System.double">double</span> b)</h4> |
|
|
|
<div class="content">Definite integral between points a and b. |
|
|
|
|
|
|
|
|
|
|
|
<div class="parameters"> |
|
|
|
<h5>Parameters</h5> |
|
|
|
|
|
|
|
<h6><code><span title="System.double">double</span></code> t</h6> |
|
|
|
<p class="comments">Point t to integrate at. </p> |
|
|
|
<h6><code><span title="System.double">double</span></code> a</h6> |
|
|
|
<p class="comments">Left bound of the integration interval [a,b]. </p> |
|
|
|
<h6><code><span title="System.double">double</span></code> b</h6> |
|
|
|
<p class="comments">Right bound of the integration interval [a,b]. </p> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div id="Integrate" class="method"> |
|
|
|
<h4><span title="System.double">double</span> <strong>Integrate</strong>(<span title="System.double">double</span> a, <span title="System.double">double</span> b)</h4> |
|
|
|
<div class="content">Definite integral between points a and b. |
|
|
|
<h4><span title="System.double">double</span> <strong>Integrate</strong>(<span title="System.double">double</span> t)</h4> |
|
|
|
<div class="content">Indefinite integral at point t. |
|
|
|
|
|
|
|
|
|
|
|
<div class="parameters"> |
|
|
|
<h5>Parameters</h5> |
|
|
|
|
|
|
|
<h6><code><span title="System.double">double</span></code> a</h6> |
|
|
|
<p class="comments">Left bound of the integration interval [a,b]. </p> |
|
|
|
<h6><code><span title="System.double">double</span></code> b</h6> |
|
|
|
<p class="comments">Right bound of the integration interval [a,b]. </p> |
|
|
|
<h6><code><span title="System.double">double</span></code> t</h6> |
|
|
|
<p class="comments">Point t to integrate at. </p> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
@ -492,7 +526,7 @@ and zero second derivatives at the two boundaries, sorted ascendingly by x. |
|
|
|
</div> |
|
|
|
|
|
|
|
<div id="footer"> |
|
|
|
<p>Based on v4.13.0.0 of MathNet.Numerics (Math.NET Numerics)</p> |
|
|
|
<p>Based on v4.14.0.0 of MathNet.Numerics (Math.NET Numerics)</p> |
|
|
|
<p>Generated by <a href="http://docu.jagregory.com">docu</a></p> |
|
|
|
</div> |
|
|
|
</body> |
|
|
|
|