Constructs the cubic Hermite spline through a set of points.
Namespace: Extreme.Mathematics.CurvesAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public CubicSpline(
IList<double> xValues,
IList<double> yValues,
IList<double> yPrimeValues
)
Public Sub New (
xValues As IList(Of Double),
yValues As IList(Of Double),
yPrimeValues As IList(Of Double)
)
public:
CubicSpline(
IList<double>^ xValues,
IList<double>^ yValues,
IList<double>^ yPrimeValues
)
new :
xValues : IList<float> *
yValues : IList<float> *
yPrimeValues : IList<float> -> CubicSpline
Parameters
- xValues
- Type: System.Collections.GenericIListDouble
A list of Double values that contains the x-values of the data points. - yValues
- Type: System.Collections.GenericIListDouble
A list of Double values that contains the y-values corresponding to the values in xValues. - yPrimeValues
- Type: System.Collections.GenericIListDouble
A vector containing the slopes of the curve
corresponding to the values in xValues.
This constructor constructs a cubic Hermite spline which has the specified
first derivatives at the data points.
Numerical Libraries
Supported in: 6.0, 5.x, 4.x
Reference