CubicSplineCoef Type
Contains x data, y data (c0), slopes (c1), curvatures (c2), and the third derivative at each knot
Record fields
| Record Field | Description |
Full Usage:
C0_3
Field type: Vector<float>
|
|
Full Usage:
XData
Field type: Vector<float>
|
|
Instance members
| Instance member | Description |
Full Usage:
this.Predict
Returns: float -> float
Function that takes an x value and returns function value.
|
x values outside of the xValue range are predicted by straight lines defined by the nearest knot!
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Full Usage:
this.PredictWithinRange
Returns: float -> float
Function that takes an x value and returns function value.
|
Only defined within the range of the given xValues!
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Static members
| Static member | Description |
Full Usage:
CubicSplineCoef.Create(x) (c)
Parameters:
Vector<float>
c : Vector<float>
Returns: CubicSplineCoef
|
|
FSharp.Stats