Cubic Spline.Create Natural Method
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Create | Constructs the natural cubic spline through a set of points. |
Create | Constructs the natural cubic spline through a set of points. |
CreateNatural(IList<Point>)
Constructs the natural cubic spline through a set of points.
public static CubicSpline CreateNatural(
IList<Point> dataPoints
)
Parameters
Return Value
CubicSplineRemarks
This constructor constructs a natural cubic spline. This means that the second derivative of the curve at the end points is zero.
Exceptions
Argument | dataPoints is null. |
CreateNatural(IList<Double>, IList<Double>)
Constructs the natural cubic spline through a set of points.
public static CubicSpline CreateNatural(
IList<double> xValues,
IList<double> yValues
)
Parameters
- xValues IList<Double>
- A Double list containing the x-values of the data points.
- yValues IList<Double>
- A Double list containing the y-values corresponding to the values in xValues.
Return Value
CubicSplineRemarks
This constructor constructs a natural cubic spline. This means that the second derivative of the curve at the end points is zero.
Exceptions
Argument | xValues is null.
-or- yValues is null. |
Dimension | The length of xValues does not equal the length of yValues. |